export declare class CreateHotelDto {
    destination_id: string;
    short_code: string;
    name: string;
    address: string;
    location?: string;
    gps_latitude?: string;
    gps_longitude?: string;
    pickup_gate?: string;
    dropoff_gate?: string;
    contact_person: string;
    contact_phone?: string;
    special_instructions?: string;
    meeting_point?: string;
    is_active?: boolean;
}
