import dayjs from "dayjs"; type BookingDates = { checkIn?: dayjs.Dayjs; checkOut?: dayjs.Dayjs; }; type CheckInOutChangeFunction = (checkInDate?: Date, checkOutDate?: Date) => void; export declare const useUpdateCheckInOut: (bookingDates: BookingDates, onCheckInOutChange: CheckInOutChangeFunction | undefined) => void; export default useUpdateCheckInOut; //# sourceMappingURL=useUpdateCheckInOut.d.ts.map