import { type MonthRangePickerMonthGridProps } from './MonthRangePickerMonthGrid.types'; /** * MonthRangePickerMonthGrid component that integrates MonthGrid with range selection logic. * * This component: * - Uses the shared MonthGrid for layout and basic month logic * - Integrates with BaseRangePickerProvider for range selection state * - Provides custom MonthRangePickerMonthCell with range visual states * - Handles month click and hover events for range selection * * @param props - MonthRangePickerMonthGrid props */ export declare function MonthRangePickerMonthGrid({ viewingValue, minMonth, maxMonth, handleKeyboardNavigation, }: MonthRangePickerMonthGridProps): import("react/jsx-runtime").JSX.Element;