/// import { TextFieldProps, InputBaseProps } from "@mui/material"; import { IFieldProps } from "../../common/field"; interface InputControlProps extends IFieldProps { type: string; htmlProps?: InputBaseProps["inputProps"]; textFieldProps?: TextFieldProps; } declare function InputControl(props: InputControlProps): JSX.Element; export default InputControl;