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