import React from 'react'; interface DatePickerProps { format?: string; showTime?: boolean; value?: object; onChange: (value: any) => void; } declare const CurrentDatePicker: React.FC; export default CurrentDatePicker;