import { type MonthRangePickerProps } from './MonthRangePicker.types'; /** * MonthRangePicker component for selecting month ranges. * * @param props - MonthRangePicker props including month-specific constraints * * @example * ```tsx * console.log('Selected range:', start, end)} * minMonth={new Date(2020, 0, 1)} * maxMonth={new Date(2030, 11, 1)} * /> * ``` */ export declare function MonthRangePicker({ format, minMonth, maxMonth, startInputProps, endInputProps, initialDisplayedMonths, displayJapaneseCalendar, calendarLocale, ...restProps }: MonthRangePickerProps): import("react/jsx-runtime").JSX.Element;