import * as React from 'react'; export interface StepperStep { key: string; label: React.ReactNode; description?: React.ReactNode; } export interface StepperProps { steps: StepperStep[]; active: number; onStepClick?: (index: number) => void; allowSkipAhead?: boolean; className?: string; } /** Wizard step indicator. Horizontal labelled list on md+, compact dot row on mobile. */ export declare function Stepper({ steps, active, onStepClick, allowSkipAhead, className, }: StepperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=stepper.d.ts.map