Files
2026-01-16 01:51:36 +00:00

11 lines
439 B
TypeScript

import type { Dayjs } from 'dayjs';
import type { CalendarMode, CalendarProps } from './generateCalendar';
import generateCalendar from './generateCalendar';
declare const Calendar: import("react").FC<Readonly<CalendarProps<Dayjs>>>;
export type CalendarType = typeof Calendar & {
generateCalendar: typeof generateCalendar;
};
export type { CalendarMode, CalendarProps };
declare const _default: CalendarType;
export default _default;