import React from "react";
import "./styles.css";
interface Prop {
    currentDates: string;
    handleNewBookingButton: any;
    roomList: any[];
    roomTypeList: any[];
    bookingData: any[];
}
export default function Calander(props: Prop): React.JSX.Element;
export {};
