/** * Hook for handling keyboard navigation in MonthPickerMonthCell * * @param onKeyDown - Optional callback for additional key handling * * @param minMonth - The minimum selectable month * * @param maxMonth - The maximum selectable month * * @param checkDisabledMonth - Function to check if a month should be disabled * * @returns A keyboard event handler for month navigation */ export declare function useMonthPickerKeyboardNavigation(onKeyDown?: React.KeyboardEventHandler, minMonth?: Date, maxMonth?: Date, checkDisabledMonth?: (date: Date) => boolean): import("react").KeyboardEventHandler;