export declare class CreateTransportServiceDto {
    destination_id: string;
    short_code: string;
    category: string;
    from_city: string;
    from_address?: string;
    from_gps_latitude?: string;
    from_gps_longitude?: string;
    to_city: string;
    to_address?: string;
    to_gps_latitude?: string;
    to_gps_longitude?: string;
    return_from_city?: string;
    return_from_address?: string;
    return_from_gps_latitude?: string;
    return_from_gps_longitude?: string;
    return_to_city?: string;
    return_to_address?: string;
    return_to_gps_latitude?: string;
    return_to_gps_longitude?: string;
    distance_km?: number;
    duration_mins?: number;
    description?: string;
    is_active?: boolean;
}
