1 | import { DropdownOption } from "../components/Dropdown.js";
|
2 | import type { DateLib, Formatters } from "../types/index.js";
|
3 | /** Return the years to show in the dropdown. */
|
4 | export declare function getYearOptions(displayMonth: Date, calendarStart: Date | undefined, calendarEnd: Date | undefined, formatters: Pick<Formatters, "formatYearDropdown">, dateLib: DateLib): DropdownOption[] | undefined;
|