UNPKG

532 BTypeScriptView Raw
1import { CalendarDay } from "../classes/index.js";
2import type { DateLib, DayPickerProps, MoveFocusBy, MoveFocusDir } from "../types/index.js";
3export declare function getNextFocus(moveBy: MoveFocusBy, moveDir: MoveFocusDir,
4/** The date that is currently focused. */
5refDay: CalendarDay, calendarStartMonth: Date | undefined, calendarEndMonth: Date | undefined, props: Pick<DayPickerProps, "disabled" | "hidden" | "modifiers" | "locale" | "ISOWeek" | "weekStartsOn">, dateLib: DateLib, attempt?: number): CalendarDay | undefined;