import { NumberInputProps } from './NumberInputBase.js'; import type { FormControlRef } from '../shared-types.js'; /** * Number inputs let users enter and edit integers and floating-point numbers. * @public * @deprecated This component is deprecated and will be removed in a future release. Please use the NumberInputV2 component instead. */ export declare const NumberInput: (props: NumberInputProps & import("react").RefAttributes>) => import("react").ReactElement | null;