import { BookingType, blockedDaysType, IHandleBookings, IFormatBookingsData, IGetAllBookedDays, IGetAllHalfDays, IGetDatesInRange, DaysOfWeekType, DaysOfWeekOffsetType } from './../types'; export declare const daysOfTheWeek: DaysOfWeekType; export declare const daysOfTheWeekOffset: DaysOfWeekOffsetType; export declare const isValidMonthsOption: (numOfMonths: number) => boolean; export declare const getMonthName: (month: number) => string; export declare const formatBookingsData: ({ bookings, year }: IFormatBookingsData) => BookingType[]; export declare const getDatesInRange: ({ startDate, endDate }: IGetDatesInRange) => blockedDaysType; export declare const getAllBookedDays: ({ dates }: IGetAllBookedDays) => blockedDaysType; export declare const getAllHalfDays: ({ dates }: IGetAllHalfDays) => blockedDaysType; export declare const handleBookings: ({ bookings, year, }: IHandleBookings) => { halfDays: blockedDaysType; bookedDays: blockedDaysType; };