import CompCommon from '../../common/type'; export interface DatetimePickerProps extends CompCommon { showEndDate?: boolean; visible: boolean; onClose?: Function; onOk?: Function; closeOnclickOverlay?: boolean; title?: string; endTitle?: string; value?: string; endValue?: string; type?: 'date' | 'time' | 'datetime'; minDate?: string; maxDate?: string; round?: boolean; }