/** * Progress Indicator Component * Supports spinner, percentage, and step-based progress */ import { UIComponent, ComponentProps } from '../types'; export declare class ProgressIndicator implements UIComponent { private spinner?; private lastMessage?; supportsFormat(_format: 'cli' | 'mcp' | 'web'): boolean; render(props: ComponentProps): string | object; private renderCLI; private renderMCP; private renderWeb; private createProgressBar; complete(message?: string): void; fail(message?: string): void; } //# sourceMappingURL=progress.d.ts.map