/**
 * Route allocation schema (passenger ↔ route + pickup/drop stops).
 * Industry-agnostic: use for any transport allocation (corporate shuttle, school bus, patient transport, etc.).
 * Field names (fltst_*) kept for backward compatibility.
 */
declare class FleetStudentTransportBase {
    _id?: string;
    fltst_student_id_auth?: string;
    fltst_route_id_fltrm?: string;
    fltst_pickup_stop_id_fltrs?: string;
    fltst_drop_stop_id_fltrs?: string;
    fltst_valid_from?: Date;
    fltst_valid_to?: Date;
    fltst_transport_type_sygms?: string;
    fltst_guardian_phone?: string;
    fltst_entity_id_syen?: string;
    fltst_academic_year_id_acayr?: string;
    fltst_isactive?: boolean;
    fltst_created_at?: Date;
    fltst_updated_at?: Date;
    fltst_created_by_user?: string;
}
declare class FleetStudentTransport extends FleetStudentTransportBase {
}
export { FleetStudentTransportBase, FleetStudentTransport };
