/// import { CalendarProps } from './types'; declare const Calendar: { (props: CalendarProps): JSX.Element; defaultProps: { size: string; highlightToday: boolean; }; }; export default Calendar;