/// import { TravelCloudClient } from '../travelcloud'; export declare const Facility: ({ facility, checkIn, checkOut }: any) => JSX.Element; export declare const Facilities: ({ facilities, facilityTypes, checkIn, checkOut }: { facilities: Array; facilityTypes: any; checkIn: any; checkOut: any; }) => any; export declare const RoomRates: ({ hotel, onHotelRoomRateClick }: { hotel: any; onHotelRoomRateClick: any; }) => any; export declare const HotelbedsResult: ({ hotels, onHotelRoomRateClick, types, checkIn, checkOut, client, children, googleAPIKey }: { hotels: any; onHotelRoomRateClick: (any: any) => any; types: any; checkIn: any; checkOut: any; client: TravelCloudClient; children?: (params: { hotels: any; types: any; imageUrlPrefix: string; rateClasses: any; }) => any; googleAPIKey: string; }) => any; export interface HotelbedsSelectedRateInfo { hotel: any; room: any; rates: any[]; }