import * as React from "react"; export interface StepperProps { activeIndex: number | null; steps: { main: string; sub: string; status: string; }[]; onIndexSelectionHandler?(index: number): void; } declare const Stepper: ({ activeIndex, steps, onIndexSelectionHandler, }: StepperProps) => React.ReactElement; export default Stepper;