/// import { ISingleProps, IShowTime, IDisabledTime, IValueType, ISingleRelatedType } from './types'; export interface IDatePickerProps extends Omit, ISingleRelatedType { showTime?: IShowTime; disabledTime?: IDisabledTime; hideFooter?: boolean; showLunarDate?: boolean; lunarValueFormatter?: (date: Date) => string; } export declare const DatePicker: (props: IDatePickerProps) => JSX.Element; export default DatePicker;