/** * TUI progress indicator component — text-based progress bar for a task. * * Renders a compact progress bar like `[████░░░░░░] 45% | stage: compiling | 12 events` * that fits inline in the dispatch activity view. * * @module */ /** @jsxImportSource @opentui/solid */ import type { ThemeColors } from "../helpers.ts"; export declare function renderProgressIndicator(props: { c: ThemeColors; stage: string; percentage?: number; message: string; eventCount: number; }): any; //# sourceMappingURL=ProgressIndicator.d.ts.map