import { default as React } from 'react'; export type CalendarProps = { /** * The current date. */ value: Date | undefined; /** * The earliest date allowed by the Calendar */ minDate?: Date; /** * The oldest date allowed by the Calendar */ maxDate?: Date; /** * Handler that is called when a date is clicked. */ onClick: (date: Date) => void; /** * className for the element */ className?: string; }; export declare const Calendar: ({ value, onClick, maxDate, minDate, className, }: CalendarProps) => React.JSX.Element; //# sourceMappingURL=Calendar.d.ts.map