/** * @fileoverview Graph live-view derivation from the run's `SignalEnvelope`. * * Maps envelope units to plain {@link LiveRunTableRow} data for the shared * cli-ui `liveRunTable` renderer (ADR-0058). Graph engines must not import * `@opensip-cli/output` or the CLI host's `envelopeTableNode`. */ import type { LiveRunTableRow } from '@opensip-cli/cli-ui'; import type { SignalEnvelope } from '@opensip-cli/contracts'; /** Build one row per unit — mirrors `formatSignalTableRows` (output) for graph. */ export declare function envelopeToLiveRunTableRows(envelope: SignalEnvelope): LiveRunTableRow[]; //# sourceMappingURL=graph-envelope-view.d.ts.map