/// <reference types="react" />
import { CommonEventFunction } from "@vnxjs/components/types/common";
import { InputProps } from "@vnxjs/components/types/Input";
interface StepperInputProps {
    width?: number | string;
    disabled?: boolean;
    onFocus?: CommonEventFunction<InputProps.inputForceEventDetail>;
}
declare function StepperInput(props: StepperInputProps): JSX.Element;
export default StepperInput;
