import { type MonthRangePickerPanelProps } from './MonthRangePickerPanel.types'; /** * MonthRangePickerPanel component for selecting month ranges. * * This component provides a complete interface for month range selection including: * - Dual-column year navigation controls * - Dual-panel month grids for range selection * - Apply/Cancel footer controls * * All range selection logic is managed through BaseRangePickerProvider context. * * @param props - MonthRangePickerPanel props * * @example * ```tsx * * ``` */ export declare function MonthRangePickerPanel({ viewingValue, setViewingValue, value, minMonth, maxMonth, }: MonthRangePickerPanelProps): import("react/jsx-runtime").JSX.Element;