import { BaseEntity } from '../database/base.entity';
import { DestinationEntity } from './destination.entity';
export declare class TransportServiceEntity extends BaseEntity {
    destination: DestinationEntity;
    destination_id: string;
    short_code: string;
    category: string;
    from_city: string;
    from_address: string | null;
    from_gps_latitude: string | null;
    from_gps_longitude: string | null;
    to_city: string;
    to_address: string | null;
    to_gps_latitude: string | null;
    to_gps_longitude: string | null;
    return_from_city: string | null;
    return_from_address: string | null;
    return_from_gps_latitude: string | null;
    return_from_gps_longitude: string | null;
    return_to_city: string | null;
    return_to_address: string | null;
    return_to_gps_latitude: string | null;
    return_to_gps_longitude: string | null;
    distance_km: number | null;
    duration_mins: number | null;
    description: string | null;
    is_active: boolean;
}
