import { t as ModuleTheme } from "../module-theme-hGWXgqv4.cjs"; //#region src/modules/years-track/CalendarYearsTrack.d.ts type CalendarYearsTrackProps = { /** First/last year of the track. Default min/max config or 1900–2100. */ minYear?: number; maxYear?: number; /** Span modes: edit a range bound (`"from"`/`"to"`)'s year instead of view. */ bound?: "from" | "to"; col?: number | string; className?: string; /** * Per-module theme override: a built-in family name (`data-theme`) or a * `createTheme` token object (inline `--c-*` vars on the track). */ theme?: ModuleTheme; /** Per-module scheme override (`data-scheme` on the track). */ scheme?: "light" | "dark" | "auto"; onYearSelect?: (year: number) => void; }; /** * Years as a horizontal physics track (the v2 years-track). Finite window * (non-circular); landing on a year navigates the view, or edits a range * bound's year with `bound`. */ declare function CalendarYearsTrack({ minYear, maxYear, bound, col, className, theme, scheme, onYearSelect }: CalendarYearsTrackProps): import("react/jsx-runtime").JSX.Element; //#endregion export { CalendarYearsTrack, type CalendarYearsTrackProps };