/** * StepIndicator Component * * Shows progress through the wizard steps. * * @since v1.43.1 */ import type React from 'react'; import { type WizardStep } from './wizard-types.js'; export interface StepIndicatorProps { /** Current step */ currentStep: WizardStep; } export declare function StepIndicator({ currentStep }: StepIndicatorProps): React.ReactElement; //# sourceMappingURL=StepIndicator.d.ts.map