UNPKG

331 BTypeScriptView Raw
1import type { DateLib, DayPickerProps } from "../index.js";
2/** Return the start month based on the props passed to DayPicker. */
3export declare function getInitialMonth(props: Pick<DayPickerProps, "fromYear" | "toYear" | "startMonth" | "endMonth" | "month" | "defaultMonth" | "today" | "numberOfMonths">, dateLib: DateLib): Date;