import React from 'react'; import 'react-datepicker/dist/react-datepicker.css'; import './DateTimePickerStyles.css'; export interface DateTimePickerProps { value: string; placeholder?: string; label?: string; error?: boolean; helpertext?: string; disabled?: boolean; required?: boolean; width?: number | string; from?: Date; to?: Date; onChange: (date: string | null) => void; size?: 'small' | 'medium' | 'large'; } export declare const DateTimePicker: React.FC;