/** * Progress tracking for wizard phases. * Maps xstate machine states to user-friendly phase names. */ export interface Phase { id: string; name: string; number: number; } export declare const PHASES: Phase[]; export declare class ProgressTracker { private currentPhase; private completedPhases; private readonly totalPhases; enterPhase(stateId: string): void; exitPhase(stateId: string): void; getCurrentPhase(): Phase | null; getCurrentIndicator(): string; getCompletedSummary(): string[]; isComplete(): boolean; reset(): void; }