@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
15 lines (14 loc) • 367 B
TypeScript
import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { InputTypeMap } from './Input.types';
/**
*
* Demos:
*
* - [Input](https://mui.com/base-ui/react-input/)
*
* API:
*
* - [Input API](https://mui.com/base-ui/react-input/components-api/#input)
*/
declare const Input: PolymorphicComponent<InputTypeMap<{}, "div">>;
export { Input };