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