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