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