import type { Step } from "./stepper"; interface MinimalStepperProps extends React.HTMLAttributes { steps: Step[]; currentStep: number; orientation?: "horizontal" | "vertical"; clickable?: boolean; allowFutureSteps?: boolean; onStepClick?: (stepIndex: number) => void; } export declare const MinimalStepper: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=stepper-minimal.d.ts.map