/// import { Dayjs } from 'dayjs'; export interface DateProps { value?: string | Dayjs; defaultValue?: Dayjs; disabledDates?: (day: Dayjs) => boolean; mode?: string; onChange?: (value: Dayjs | undefined) => void; } export interface WeekDay { date: string; dayOfMonth: number; isCurrentMonth: boolean; isDisabled: boolean; } export declare const Date: ({ defaultValue, disabledDates, mode, value, onChange, }: DateProps) => JSX.Element;