You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
367 B
TypeScript
15 lines
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 };
|