import { t as ModuleTheme } from "../module-theme-hGWXgqv4.cjs"; //#region src/modules/months-track/CalendarMonthsTrack.d.ts type CalendarMonthsTrackProps = { short?: boolean; /** Show the year as a sub-label on the active month. */ showYearLabel?: boolean; /** Span modes: edit a range bound (`"from"`/`"to"`)'s month 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"; onMonthSelect?: (year: number, month: number) => void; }; /** * Months as a horizontal physics track (the v2 months-track). Landing on a * month navigates the view. Circular; clamps to `min`/`max` within the year. */ declare function CalendarMonthsTrack({ short, showYearLabel, bound, col, className, theme, scheme, onMonthSelect }: CalendarMonthsTrackProps): import("react/jsx-runtime").JSX.Element; //#endregion export { CalendarMonthsTrack, type CalendarMonthsTrackProps };