/// declare type Props = { date: Date | string; onClickLeft?: () => void; onClickRight?: () => void; size?: 'small' | 'large'; allowPastSelection?: boolean; }; declare const CalendarHeader: (props: Props) => JSX.Element; export default CalendarHeader;