import { ReactElement } from 'react'; export interface MonthCalendarProps { maxDate?: Date; minDate?: Date; onSelectMonth?: (date: Date) => void; selectedMonth?: Date; } declare const MonthCalendar: ({ selectedMonth, onSelectMonth, minDate, maxDate, }: MonthCalendarProps) => ReactElement; export default MonthCalendar;