import { FC } from 'react'; import { CalendarProps } from './types/Calendar.props.ts'; /** * A date-picker calendar built on top of `react-day-picker`. * * Supports `single`, `multiple`, and `range` selection modes. * * The header shows **[← Month Year →]** in day view. Clicking **Month** opens * a 3×4 month picker; clicking **Year** opens a 3×4 year picker with decade * pagination — no scrolling required. * * Use `startYear` / `endYear` to bound the year picker range * (defaults: 100 years back → 10 years ahead). * * @example * ```tsx * // Single date * * * // Date of birth — show last 120 years, no future dates * * * // Date range * * ``` */ declare const Calendar: FC; export default Calendar;