import { Dispatch, SetStateAction } from 'react'; import { DatePickerCalendarView } from '../utils'; export type CalendarControlsProps = { /** * Calendar shown date */ date: Date; setDate: Dispatch>; minDate?: Date; maxDate?: Date; view?: DatePickerCalendarView; className?: string; testId?: string; }; export declare const CalendarControls: ({ date, setDate, minDate, maxDate, view, testId, className, }: CalendarControlsProps) => JSX.Element; //# sourceMappingURL=CalendarControls.d.ts.map