export declare type LatLng = { latitude: number | string; longitude: number | string; }; export declare enum MeetingPointTypes { DEFAULT = "DEFAULT", PICK_UP = "PICK_UP", DROP_OFF = "DROP_OFF", MEET_AND_GREET = "MEET_AND_GREET", CURB_SIDE = "CURB_SIDE", STAND_BY = "STAND_BY" } export declare enum PlaceDetailTypes { AIRPORT = "AIRPORT", TRAIN_STATION = "TRAIN_STATION", METRO_STATION = "METRO_STATION", PORT = "PORT", HOTEL = "HOTEL", OTHER = "OTHER" } export declare enum PoiTypes { ENRICHED = "ENRICHED", REGULATED = "REGULATED", NEAREST = "NEAREST" } export declare enum QuoteResponseStatuses { PROGRESSING = "PROGRESSING", COMPLETED = "COMPLETED" } export declare enum QuotePriceTypes { FIXED = "FIXED", ESTIMATED = "ESTIMATED", METERED = "METERED" } export declare enum QuotePickUpTypes { DEFAULT = "DEFAULT", STAND_BY = "STAND_BY", CURB_SIDE = "CURB_SIDE", MEET_AND_GREET = "MEET_AND_GREET" } export declare enum QuoteSources { FLEET = "FLEET", MARKET = "MARKET" } export declare type MeetingPointType = keyof typeof MeetingPointTypes; export declare type CommonDetailsType = keyof typeof PlaceDetailTypes; export declare type CommonPoiType = keyof typeof PoiTypes; export declare type QuoteResponseStatuse = keyof typeof QuoteResponseStatuses; export declare type QuotePriceType = keyof typeof QuotePriceTypes; export declare type QuotePickUpType = keyof typeof QuotePickUpTypes; export declare type QuoteSource = keyof typeof QuoteSources; export declare type VehicleAttributes = Partial<{ child_seat: boolean; electric: boolean; hybrid: boolean; luggage_capacity: number; passenger_capacity: number; }>; export declare type ServiceLevelAgreements = { free_cancellation: { type: string; minutes: number; }; free_waiting_time: { minutes: number; }; }; export interface Breakdown { value: number; name: string; description?: string; }