import { default as React } from 'react'; import { SxProps, Theme } from '@mui/material/styles'; type TextFieldProps = { label: string; name: string; type?: "ssn" | "phone" | "text" | "digits" | "email" | "password" | "fein" | "zip" | "fax" | "number"; fullWidth?: boolean; min?: number; max?: number; step?: number; error?: boolean; helperText?: string; defaultValue?: string; required?: boolean; customAriaLabel?: string; handleBlur?: (e: React.FocusEvent) => void; autoFocus?: boolean; disabled?: boolean; multiline?: boolean; rows?: number; maxLength?: number; disableEyeIcon?: boolean; sx?: SxProps; nonEditable?: boolean; }; declare const MUITextField: ({ label, name, type, fullWidth, min, max, step, error, helperText, required, customAriaLabel, handleBlur, autoFocus, disabled, multiline, rows, maxLength, defaultValue, disableEyeIcon, sx, nonEditable, }: TextFieldProps) => import("react/jsx-runtime").JSX.Element; export default MUITextField;