import { type MonthRangePickerNavigationProps } from './MonthRangePickerNavigation.types'; /** * Year navigation component for MonthRangePicker. * * Provides dual-column navigation layout matching DateRangePickerPopover: * - Left column: Previous year button + Current year + Placeholder * - Right column: Placeholder + Next year + Next year button * Navigation is disabled based on min/max month constraints. * * @param props - MonthRangePickerNavigation props */ export declare function MonthRangePickerNavigation({ viewingValue, setViewingValue, minMonth, maxMonth, }: MonthRangePickerNavigationProps): import("react/jsx-runtime").JSX.Element;