export interface DatePickerProps { label: string; disabled?: boolean; error?: boolean; name?: string; value?: string | number | Date; helperText?: string; dataPosition?: number; dataName?: string; disableFutureDates?: boolean; placeholder?: string; required?: boolean; disablePastDates?: boolean; defaultValue?: string | number | Date | undefined; textFieldProps?: any; format?: string; } declare const DateTimePicker: (props: DatePickerProps) => import("react/jsx-runtime").JSX.Element; export { DateTimePicker }; export default DateTimePicker;