import { default as React } from 'react'; import { NumberInputInputProps } from './types'; /** * The styled number input field. Wraps the headless core `NumberInput.Input` with the design-system * classes and error/warning states. Rendered directly by `NumberInput` standalone, and used as * `NumberInput.Input` when composing a stepper. */ export declare function NumberInputInput({ width, error, warning, label, ref, ...rest }: NumberInputInputProps): React.JSX.Element; export declare namespace NumberInputInput { var displayName: string; }