@mui/core
Version:
Unstyled React components with which to implement custom design systems.
15 lines (14 loc) • 400 B
TypeScript
import { OverridableComponent } from '@mui/types';
import { InputUnstyledTypeMap } from './InputUnstyledProps';
/**
*
* Demos:
*
* - [Text Fields](https://mui.com/components/text-fields/)
*
* API:
*
* - [InputUnstyled API](https://mui.com/api/input-unstyled/)
*/
declare const InputUnstyled: OverridableComponent<InputUnstyledTypeMap<{}, "div">>;
export default InputUnstyled;