import React from 'react'; import type { OldNumericInputBaseType, OldNumericInputProps } from './converter.old'; export type NumericInputProps = OldNumericInputProps; export type NumericInputBaseType = OldNumericInputBaseType; export declare const NumericInput: (props: Omit, "leftIcon" | "rightIcon" | "hasStatusIcon"> & Omit & { ref?: React.Ref | undefined; }) => JSX.Element;