import * as react from 'react'; import { HTMLAttributes } from 'react'; interface StepperStep { label: React.ReactNode; description?: React.ReactNode; } interface StepperProps extends HTMLAttributes { steps: StepperStep[]; /** 0-indexed current step */ current: number; orientation?: 'horizontal' | 'vertical'; } declare const Stepper: react.ForwardRefExoticComponent>; export { Stepper, type StepperProps, type StepperStep };