/// import { InputProps, SxProps } from '@mui/material'; import { DefaultTheme as Theme } from '@mui/styles'; import { FieldProps } from 'formik'; import { DefaultStyleProps } from './FieldFormControl'; interface ControlledTextFieldProps extends FieldProps, InputProps, DefaultStyleProps { charLimit?: number; description?: string; label?: string; optional?: boolean | string; onExampleClick?: () => void; sx?: SxProps; } export default function ControlledTextField({ charLimit, className, description, endAdornment, field, form, label, meta, optional, startAdornment, onExampleClick, defaultStyle, sx, ...inputProps }: ControlledTextFieldProps): JSX.Element; export {};