import { type MonthGridProps } from './MonthGrid.types'; /** * MonthGrid displays a 4x3 grid of months for a given year. * It is fully controlled via props and does not use context. */ export declare function MonthGrid({ year, selectedMonth, minMonth, maxMonth, checkDisabledMonth, onMonthSelect, renderMonthCell, pendingFocusMonth, onPendingFocusMonthChange, ...divProps }: MonthGridProps): import("react/jsx-runtime").JSX.Element;