import { Locale } from 'date-fns'; import { DisplayMode } from '../types'; export type CalendarType = 'day' | 'month' | 'year' | 'year_range'; export interface YearMonthCalendarProps { className?: string; type: CalendarType; locale: Locale; currentDate: Date; displayMode?: DisplayMode; disabled?: boolean; disabledDates?: (value: Date) => boolean; selectedRange?: { from: Date | undefined; to?: Date | undefined; }; onChange?: (value: Date | null) => void; onClose?: () => void; } export declare const YearMonthCalendar: ({ className, type, locale, disabledDates, displayMode, currentDate, selectedRange, onChange, onClose, }: YearMonthCalendarProps) => import("@emotion/react/jsx-runtime").JSX.Element;