value of the `input` element, required for a controlled component. */ value?: unknown; } export interface InputBaseComponentProps extends React.HTMLAttributes { // Accommodate arbitrary additional props coming from the `inputProps` prop [arbitrary: string]: any; } /** * `InputBase` contains as few styles as possible. * It aims to be a simple building block for creating an input. * It contains a load of style reset and some state logic. * * Demos: * * - [Text Field](https://mui.com/material-ui/react-text-field/) * * API: * * - [InputBase API](https://mui.com/material-ui/api/input-base/) */ export default function InputBase(props: InputBaseProps): React.JSX.Element;