export interface Day_Type { type: 'single' | 'start' | 'end' | 'between' | null; date: string | null; isToday: boolean; isBeforeToday: boolean; isAfterToday: boolean; isHoliday: boolean; } export declare type Week_Type = Day_Type[]; export interface Month_Type { id: string; year: number; month: number; } export declare function getMonths(pastYearRange: number, futureYearRange: number): Month_Type[]; export declare function getWeeks(date: string, selectedStartDate?: string | null, selectedEndDate?: string | null): Week_Type[]; //# sourceMappingURL=data.d.ts.map