import { InputNumberProps } from '../../common/components/input-number/InputNumber'; import { BaseInputFieldProps } from '../../common/types/input'; export interface NumberFieldProps extends BaseInputFieldProps, InputNumberProps { } /** * controlled * uncontrolled * * The `` component only accepts numbers as input.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229e0ee8a8dac74d7dc2b47) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number) for further information about the element and related attributes. */ declare const NumberField: import("react").ForwardRefExoticComponent>; export default NumberField;