import { default as React } from 'react'; import { DatePickerLocalizedText } from './date-picker-localization'; import { DatePickerDayProps } from './date-picker-day'; import { DaysOfWeek } from './date-utils'; type DatePickerMonthProps = { selectedDate: Date | undefined; focusedDate: Date; labelledById: string; localization: DatePickerLocalizedText; firstDayOfWeek: DaysOfWeek; min?: Date; max?: Date; dateFormatter: Intl.DateTimeFormat | undefined; isDateDisabled: (date: Date | undefined | null) => boolean; onDateSelect: DatePickerDayProps['onDaySelect']; onKeyboardNavigation: (event: any) => void; }; declare const DatePickerMonth: React.FC; export default DatePickerMonth;