import { LitElement } from 'lit'; export interface PipelineStep { server: string; tool: string; status: 'pending' | 'running' | 'success' | 'error'; } /** * — Real-time tool chain visualization. * Shows a horizontal pipeline of MCP tool call steps with live status indicators. * * Usage: * */ export declare class BurnishPipeline extends LitElement { static properties: { steps: { type: StringConstructor; }; _parsed: { state: boolean; }; }; static styles: import("lit").CSSResult; steps: string; _parsed: PipelineStep[]; constructor(); willUpdate(changed: Map): void; private _statusIcon; render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=pipeline.d.ts.map