/// declare type Props = { date: Date | string; onDateChange: (date: Date) => void; showActiveDate: boolean; availableDates?: Date[]; size?: 'small' | 'large'; allowPastSelection?: boolean; }; declare const CalendarBody: (props: Props) => JSX.Element; export default CalendarBody;