import React from 'react'; export interface InputNumberProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; defaultValue?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; validateStatus?: any; help?: any; style?: React.CSSProperties; showWrapperContainer: boolean; wrapperContainer: any; formatting?: any; formatterFunc?: any; parserFunc?: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; rules?: any[]; isFormChild?: boolean | undefined; readOnly: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; trigger?: string; [key: string]: any; } export interface WrapperInputNumberProps { children: React.ReactElement; } declare const INPUTNUMBER_WRAPPER_CLASSNAME = "ued-inputNumber-wrap"; declare const WrapperInputNumber: React.FC; declare const InputNumber: React.ForwardRefExoticComponent & React.RefAttributes>; export default InputNumber; export { WrapperInputNumber, INPUTNUMBER_WRAPPER_CLASSNAME };