import { BaseEntity } from '../database/base.entity';
import { BookingEntity } from './booking.entity';
import { TransportServiceEntity } from './transport-service.entity';
import { SupplierEntity } from './supplier.entity';
import { DriverEntity } from './driver.entity';
import { VehicleEntity } from './vehicle.entity';
export declare class BookingTransportItemEntity extends BaseEntity {
    booking: BookingEntity;
    booking_id: string;
    transport_service: TransportServiceEntity;
    transport_service_id: string;
    vehicle_type: string;
    quantity: number;
    unit_price: number;
    subtotal: number;
    date: string | null;
    sort_order: number;
    notes: string | null;
    is_shared: boolean;
    supplier: SupplierEntity | null;
    supplier_id: string | null;
    driver: DriverEntity | null;
    driver_id: string | null;
    supplier_name_text: string | null;
    driver_name_text: string | null;
    driver_phone_text: string | null;
    vehicle_no_text: string | null;
    vehicle: VehicleEntity | null;
    vehicle_id: string | null;
    pickup_time: string | null;
    pickup_address: string | null;
    dropoff_address: string | null;
    assignment_status: string | null;
}
