declare function formatFullDate(year?: number | string, month?: number | string, day?: number | string): string; /** * [getWeeks description] */ export type WeekStartNumber = 0 | 1 | 2 | 3 | 4 | 5 | 6; declare const getMonthTable: (month: Date, weekStartsOn: WeekStartNumber) => { monthText: string; weeks: any[]; month: Date; }; export default getMonthTable; export { formatFullDate };