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
412 B
TypeScript

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 };