UNPKG

@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) 412 B
import { OverridableComponent } from '@mui/types'; import { NumberInputTypeMap } from './NumberInput.types'; /** * * Demos: * * - [Number Input](https://mui.com/base-ui/react-number-input/) * * API: * * - [NumberInput API](https://mui.com/base-ui/react-number-input/components-api/#number-input) */ declare const NumberInput: OverridableComponent<NumberInputTypeMap<{}, "div">>; export { NumberInput };