import * as React from "react"; import { DayPicker } from "react-day-picker"; export type CalendarProps = React.ComponentProps; /** * ODS-styled DayPicker wrapper. * * IMPORTANT: the installed react-day-picker is **v9** — the classNames keys * below are the v9 vocabulary (`weekdays`/`weekday`/`week`/`day`/`day_button`/ * `selected`/`disabled`/…). The previous v8 shadcn map (`head_row`, `cell`, * `day_selected`, …) was silently IGNORED by v9, which shipped default * browser-table chrome: misaligned weekday headers, no disabled styling, * wrapping rows on mobile. Do not reintroduce v8 keys. * * Day-cell display stays `table-cell` (only the inner `day_button` is * flex) — converting ``s to inline-flex is what made rows wrap. */ declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React.JSX.Element; declare namespace Calendar { var displayName: string; } export { Calendar }; //# sourceMappingURL=calendar.d.ts.map