import { type HTMLAttributes } from "react";
export interface StepperStep {
label: string;
}
export interface StepperProps extends HTMLAttributes {
steps: StepperStep[];
currentStep: number;
}
export declare const Stepper: import("react").ForwardRefExoticComponent>;