export declare enum DeliveryService {
    THRESHOLD = "THRESHOLD",
    TO_THE_DOOR = "TO_THE_DOOR",
    WHITE_GLOVE = "WHITE_GLOVE",
    ROOM_OF_CHOICE = "ROOM_OF_CHOICE"
}
export type DeliveryServiceType = keyof typeof DeliveryService;
