export declare class TripStatuses { static REQUESTED: string; static ACCEPTED: string; static TO_PICK_UP: string; static AT_PICK_UP: string; static PICKED_UP: string; static TO_DROP_OFF: string; static AT_DROP_OFF: string; static COMPLETED: string; static MANUALLY_COMPLETED: string; static CANCELLED: string; static RIDER_CANCELLED: string; static DRIVER_CANCELLED: string; static BOOKING_FAILED: string; static INTEGRATION_FAILED: string; static REJECTED: string; static ABORTED: string; static ASSIGNED: string; static NO_RESPONSE_DISPATCHER: string; static NO_RESPONSE_OPERATOR: string; static NO_SHOW_RIDER: string; static SCHEDULE_REQUESTED: string; static SCHEDULE_ACCEPTED: string; static SCHEDULED: string; static SUBMITTED: string; static WAITING: string; } export declare class TripStatusIds { static REQUESTED: number; static ACCEPTED: number; static DRIVING_TO_PICK_UP: number; static ARRIVED_AT_PICK_UP: number; static PICKED_UP: number; static DRIVING_TO_DROP_OFF: number; static ARRIVED_AT_DROP_OFF: number; static COMPLETED: number; static MANUALLY_COMPLETED: number; static CANCELLED: number; static RIDER_CANCELLED: number; static DRIVER_CANCELLED: number; static BOOKING_FAILED: number; static INTEGRATION_FAILED: number; static REJECTED: number; static ABORTED: number; static ASSIGNED: number; static NO_RESPONSE_DISPATCHER: number; static NO_RESPONSE_OPERATOR: number; static NO_SHOW_RIDER: number; static SCHEDULE_REQUESTED: number; static SCHEDULE_ACCEPTED: number; static SCHEDULED: number; static SUBMITTED: number; static WAITING: number; } export declare class TripStages { static REQUESTING: string; static WAITING_FOR_PICKUP: string; static EN_ROUTE: string; } export declare type TripStage = typeof TripStages.REQUESTING | typeof TripStages.WAITING_FOR_PICKUP | typeof TripStages.EN_ROUTE; export declare const activeTripStatuses: string[]; export declare const requestingTripStatuses: string[]; export declare const waitingForPickupTripStatuses: string[]; export declare const enRouteTripStatuses: string[]; export declare const availableTripStatuses: string[];