import { FC } from 'react'; import { CalendarProps } from 'react-calendar'; export interface CalendarPropsExtended extends Omit { value: Date | null; onChange?: (date: Date | null) => void; onDismiss?: () => void; } export declare const Calendar: FC;