import { FC } from 'react'; import { Dayjs } from 'dayjs'; export interface CalendarHeaderProps { displayedMonth: Dayjs; onPrevMonth: () => void; onNextMonth: () => void; onMonthChange: (month: Dayjs) => void; className?: string; } export declare const CalendarHeader: FC;