/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { INPUT_OPTION } from './options';
export interface IInputNumberProps extends InputType, WidthType, MarginType {
    value?: number;
    min?: number;
    max?: number;
    step?: number;
    size?: keyof typeof INPUT_OPTION;
    handleValue?: (value?: number | undefined) => void;
    onClickMinus?: (value?: number) => void;
    onClickPlus?: (value?: number) => void;
}
declare const InputNumber: import("react").ForwardRefExoticComponent<IInputNumberProps & import("react").RefAttributes<HTMLInputElement>>;
export default InputNumber;
