import { FC } from 'react'; import { Dayjs } from 'dayjs'; export interface CalendarProps { displayedMonth: Dayjs; selectedRange: [Dayjs | null, Dayjs | null]; hoverDate: Dayjs | null; displayWeekNumber?: boolean; onDateClick: (date: Dayjs) => void; onMonthChange: (month: Dayjs) => void; onDateHover?: (date: Dayjs | null) => void; className?: string; } export declare const Calendar: FC;