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