/** * Human-readable renderers for the **audit** family of nexus subcommands. * * Covers diff / export / hygiene surfaces: * - diff (before/after analyze snapshot) * - coldSymbols (low-weight / stale symbols) * - export (graph export confirmation) * * Each renderer follows the legacy `(data, quiet) => string` shape. The * shape stays stable until the consumer-side dispatcher migrates to the * typed envelope path (B5 `renderEnvelopeForHuman`). * * Subtask: T10152 (B7.3). Migrated verbatim from the deleted file * `packages/cleo/src/cli/renderers/nexus.ts` per ADR-077. * * @epic T10114 * @task T10132 */ /** * Render `cleo nexus diff` human output. */ export declare function renderNexusDiff(data: Record, quiet: boolean): string; /** * Render `cleo nexus cold-symbols` human output. * * TODO(T10128 B3 primitive ready): collapse the inline markdown table into * the B3 table primitive once B3 lands. */ export declare function renderNexusColdSymbols(data: Record, quiet: boolean): string; /** * Render `cleo nexus export` confirmation human output. */ export declare function renderNexusExport(data: Record, quiet: boolean): string; //# sourceMappingURL=index.d.ts.map