/// export interface DateTimeProps { value?: string; start?: string; format?: string; placeholder?: string; onChange?: (e: any) => void; onOpen?: () => void; onComplete?: () => void; } declare const DateTime: (props: DateTimeProps) => JSX.Element; export default DateTime;