import type { Dayjs } from 'dayjs'; export declare const DATE_FORMAT = "YYYY-MM-DD"; export declare const generateCalendar: (firstDayOfMonth: Dayjs) => { date: Dayjs; isCurrentMonth: boolean; }[][]; export declare const generateMobileCalendar: (min: string, max: string) => { id: string; matrix: { date: Dayjs; isCurrentMonth: boolean; }[][]; height: number; }[]; export declare const namesOfDays: () => string[];