import { type StatusType } from "./statusBadge"; export interface EffectNodeProgress { percent?: number; label?: string; } export interface EffectNode { effectId: string; kind: string; status: StatusType; title: string; duration?: number; progress?: EffectNodeProgress; costUsd?: number; children?: EffectNode[]; } export declare function renderEffectTree(effects: EffectNode[]): string; //# sourceMappingURL=effectTree.d.ts.map