import { type MonthPickerMonthCellProps } from './MonthCell.types'; /** * MonthPickerMonthCell is a wrapper around the shared MonthCell component. * It handles month selection and integrates with the MonthPicker context. */ export declare function MonthPickerMonthCell({ onKeyDown, minMonth, maxMonth, checkDisabledMonth, date, ...rest }: MonthPickerMonthCellProps): import("react/jsx-runtime").JSX.Element;