/// type DayPropTypes = { date: Date; currentMonth: Date; startDate: string; endDate?: string; minDate?: string; maxDate?: string; onClick: (date: Date) => void; }; declare function Day({ date, currentMonth, startDate, endDate, minDate, maxDate, onClick }: DayPropTypes): JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;