import { default as React } from 'react'; export type DateRange = [Date | undefined, Date | undefined]; export type CalendarRangeProps = { /** * The current range. */ value: DateRange; /** * The earliest date allowed by the Calendar */ minDate?: Date; /** * The oldest date allowed by the Calendar */ maxDate?: Date; /** * How many calendars to display. Defaults to 2 */ numberOfCalendars?: 1 | 2; /** * Handler that is called when a date is clicked. */ onClick: (range: DateRange) => void; }; export declare const CalendarRange: ({ value, onClick, maxDate, minDate, numberOfCalendars, }: CalendarRangeProps) => React.JSX.Element; //# sourceMappingURL=CalendarRange.d.ts.map