import { FC } from 'react'; import { DatePickerValue, Milliseconds, TDatePickerHistory } from './interface'; export interface DatePickerProps { size?: 'large' | 'normal' | 'small'; history?: TDatePickerHistory; value?: DatePickerValue; zoomDiff?: Milliseconds; showZoomIn?: boolean; showZoomOut?: boolean; resize?: boolean; disable?: boolean; getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; onChange?: (newValue: DatePickerValue) => void; onMoveBackward?: (newValue: DatePickerValue) => void; onMoveForward?: (newValue: DatePickerValue) => void; onZoom?: (newValue: DatePickerValue) => void; } declare const DatePicker: FC; export default DatePicker;