import { FC } from 'react'; export interface MonthCalendarProps { date?: Date; dateVisible?: (date: Date) => boolean; centerYearSelection?: boolean; monthFormat?: string; yearFormat?: string; onSelect?: (date: Date) => void; } declare const MonthCalendar: FC; export default MonthCalendar;