/// import type { NumericFormatProps } from 'react-number-format'; import type { HTMLProps, BaseProps } from '../../utils'; import type { InputFieldProps } from './InputField'; type HTMLInputProps = HTMLProps['input']; export type InputNumberProps = Omit & NumericFormatProps> & { htmlSize?: HTMLInputProps['size']; }; type ObjProps = { id: string; }; export declare const InputNumber: import("react").ForwardRefExoticComponent<(Omit, "children"> | Omit, "as">) & import("react").RefAttributes> & ObjProps; export {};