///
import { TextFieldProps } from '@mui/material';
import { FieldErrors } from 'react-hook-form';
interface FormHelperTextProps {
errors: FieldErrors;
name: string;
children?: string | JSX.Element;
errorTypes?: any;
value: any;
}
export declare function FormHelperText({ errors, name, errorTypes, children, value }: FormHelperTextProps): JSX.Element;
export declare const AutTextField: import("@emotion/styled").StyledComponent<(TextFieldProps & {
width: string;
}) & import("@mui/system").MUIStyledCommonProps, {}, {}>;
export {};