UNPKG

374 BTypeScriptView Raw
1import type { DateLib, DayPickerProps } from "../types/index.js";
2/** Return the start and end months for the calendar navigation. */
3export declare function getNavMonths(props: Pick<DayPickerProps, "captionLayout" | "endMonth" | "startMonth" | "today" | "fromMonth" | "fromYear" | "toMonth" | "toYear">, dateLib: DateLib): [start: Date | undefined, end: Date | undefined];