import * as React from 'react'; import { DayPicker, type DateRange, type Matcher } from 'react-day-picker'; type CalendarSize = 'sm' | 'md' | 'lg'; type DayPickerProps = React.ComponentProps; type DistributiveOmit = T extends unknown ? Omit : never; interface CalendarExtensions { /** * Cell size and text scale (Appica extension). * @default 'md' */ size?: CalendarSize; /** Extra classes on the root, merged via `tailwind-merge`. */ className?: string; } type CalendarProps = DistributiveOmit & CalendarExtensions; declare function Calendar({ size, showOutsideDays, captionLayout, startMonth, endMonth, weekStartsOn, formatters, className, ...props }: CalendarProps): React.JSX.Element; export { Calendar }; export type { CalendarProps, DateRange, Matcher }; //# sourceMappingURL=calendar.d.ts.map