import { DatePickerProps, TimePickerProps } from 'antd'; import { Moment } from 'moment'; import React from 'react'; import { PickerPanelDateProps } from 'antd/lib/calendar/generateCalendar'; export type Props = DatePickerProps & TimePickerProps & { isView?: boolean; viewEmpty?: React.ReactNode; format?: string; showTime?: PickerPanelDateProps['showTime']; showNow?: boolean; }; declare const DatePicker: React.FC; export default DatePicker;