/** * CMP-0027 NavStepper — linear multi-step chrome (≠ QuantityStepper). */ export interface NavStepperStep { readonly id: string; readonly label: string; } export interface NavStepperProps { readonly steps: readonly NavStepperStep[]; readonly activeStepId: string; readonly ariaLabel?: string; readonly className?: string; readonly testId?: string; } export declare function NavStepper({ steps, activeStepId, ariaLabel, className, testId, }: NavStepperProps): JSX.Element; //# sourceMappingURL=NavStepper.d.ts.map