import { WeekDateRange } from './types'; export declare const getOverlappingMonths: (week: Date, locale?: string) => string; export declare const getDaysInWeek: (weekStart: Date) => Date[]; export declare const getDaysOfLastWeek: (week: Date) => Date[]; export declare const getStartAndEndRangeFromWeek: (week: Date[]) => Partial; export declare const checkIfDateIsBeforeToday: (date: Date) => boolean; export declare const checkIfDateIsEnabled: (date: Date, enabledDates: Date[]) => boolean;