/** * Human-readable renderers for the **contracts** family of nexus subcommands. * * Covers cross-project / contract-level + brain/task footprint surfaces: * - contractsSync, contractsShow, contractsLinkTasks * - conduitScan, taskSymbols * - brainAnchors, taskFootprint * - wiki * * 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: T10151 (B7.2). Migrated verbatim from the deleted file * `packages/cleo/src/cli/renderers/nexus.ts` per ADR-077. * * @epic T10114 * @task T10132 */ /** * Render `cleo nexus task-footprint` human output. */ export declare function renderNexusTaskFootprint(data: Record, quiet: boolean): string; /** * Render `cleo nexus brain-anchors` human output. */ export declare function renderNexusBrainAnchors(data: Record, quiet: boolean): string; /** * Render `cleo nexus conduit-scan` human output. */ export declare function renderNexusConduitScan(data: Record, quiet: boolean): string; /** * Render `cleo nexus task-symbols` human output. */ export declare function renderNexusTaskSymbols(data: Record, quiet: boolean): string; /** * Render `cleo nexus contracts sync` human output. */ export declare function renderNexusContractsSync(data: Record, quiet: boolean): string; /** * Render `cleo nexus contracts show` human output. */ export declare function renderNexusContractsShow(data: Record, quiet: boolean): string; /** * Render `cleo nexus contracts link-tasks` human output. */ export declare function renderNexusContractsLinkTasks(data: Record, quiet: boolean): string; /** * Render `cleo nexus wiki` human output. */ export declare function renderNexusWiki(data: Record, quiet: boolean): string; //# sourceMappingURL=index.d.ts.map