export declare type HotelRoomAvailability = {
    name: string;
    price: number;
    occupancy: number;
};
export declare type GetRoomsOptions = {
    customHeaders?: Record<string, string>;
    adults?: number;
    country?: string;
    currency?: string;
};
export declare function getRooms(hotelSlug: string, checkin: Date, checkout: Date, options?: GetRoomsOptions): Promise<HotelRoomAvailability[]>;
