import { StepperVertical, StepperVerticalProps } from './variations/Stepper.vertical'; import { StepperHorizontal, StepperHorizontalProps } from './variations/Stepper.horizontal'; import Step from './Step'; declare const Stepper: typeof StepperVertical & { Vertical: typeof StepperVertical; Horizontal: typeof StepperHorizontal; Step: typeof Step; }; export type { StepperVerticalProps, StepperHorizontalProps }; export { Stepper };