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