export interface StepperProps { /** * Sets aria-label of the stepper. ariaLabel or ariaLabelledById MUST be set! */ ariaLabel?: string; /** * Sets aria-labelledby of the stepper. ariaLabel or ariaLabelledById MUST be set! */ ariaLabelledById?: string; /** * Current value. Must be between min and max */ value?: number; /** * Minimum value */ min?: number; /** * Maximum value */ max?: number; /** Sets the data-testid attribute. */ testId?: string; } declare const Stepper: React.FC; export default Stepper;