import React from 'react'; import './StepperInput.css'; interface StepperInputProps { min: number; max: number; step: number; isDisabled?: boolean; value?: number | null; onChange: (value: number | null) => void; placeholder?: string; inputWidth?: string; } declare const StepperInput: React.FC; export default StepperInput;