import React from 'react'; import { ControllerProps } from 'react-hook-form'; import { DateTimePickerProps } from '@mui/x-date-pickers/DateTimePicker'; export interface DateTimeControlProps extends Omit { name: string; label?: string; defaultValue?: string; parseValue?: (param: string) => string; formatValue?: (param: string) => string; disabled?: boolean; clearable?: boolean; enableErrorMessage?: boolean; required?: boolean; rules?: ControllerProps['rules'] | undefined; size?: 'medium' | 'small'; disablePast?: boolean; } declare const DateTimeControl: ({ name, label, parseValue, formatValue, defaultValue, disabled, enableErrorMessage, clearable, required, rules, size, disablePast, ...otherProps }: DateTimeControlProps) => React.JSX.Element; export default DateTimeControl; //# sourceMappingURL=DateTimeControl.d.ts.map