import { type MonthPickerProps } from './MonthPicker.types'; /** * MonthPicker component for selecting months. * Extends BasePicker with month-specific functionality. * * @param props - MonthPicker props including minMonth and maxMonth constraints */ export declare function MonthPicker({ format, minMonth, maxMonth, checkDisabledMonth, calendarLocale, displayJapaneseCalendar, ...restProps }: MonthPickerProps): import("react/jsx-runtime").JSX.Element;