type MonthPickerMonthGridProps = { /** * The year currently being viewed. */ viewingValue: Date; /** * The currently selected month. * * @default undefined */ value?: Date; /** * The function to call when a month is selected. * * @default undefined */ onChange?: (value: Date | undefined, event: React.MouseEvent) => void; /** * Function to check if a month should be disabled. * * @param date - The date to check (first day of the month) * * @returns true if the month should be disabled */ checkDisabledMonth?: (date: Date) => boolean; /** * The minimum selectable month. * Months before this date will be disabled. * * @default undefined */ minMonth?: Date; /** * The maximum selectable month. * Months after this date will be disabled. * * @default undefined */ maxMonth?: Date; }; /** * MonthPickerMonthGrid integrates MonthGrid with MonthPicker props. * It renders a 4x3 grid of months for the current viewing year, using props-driven selection and limits. * * @param props - Props including viewingValue, value, onChange, minMonth, and maxMonth * * @example * */ export declare function MonthPickerMonthGrid({ viewingValue, value, onChange, minMonth, maxMonth, checkDisabledMonth, }: MonthPickerMonthGridProps): import("react/jsx-runtime").JSX.Element; export {};