/** * Human-readable renderers for the **graph** family of nexus subcommands. * * Covers structural / query / traversal surfaces: * - status, setup, refresh-bridge * - clusters, flows, route-map, shape-check * - context, impact, impact-full, why, full-context * - analyze, query, search-code * - hot-paths, hot-nodes * - projects-list, projects-register, projects-remove, projects-scan, * projects-clean, projects-clean-preview * * 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: T10150 (B7.1). Migrated verbatim from the deleted file * `packages/cleo/src/cli/renderers/nexus.ts` per ADR-077. * * @epic T10114 * @task T10132 */ /** * Render `cleo nexus status` human output. */ export declare function renderNexusStatus(data: Record, quiet: boolean): string; /** * Render `cleo nexus setup` human output. */ export declare function renderNexusSetup(data: Record, quiet: boolean): string; /** * Render `cleo nexus clusters` human output. */ export declare function renderNexusClusters(data: Record, quiet: boolean): string; /** * Render `cleo nexus flows` human output. */ export declare function renderNexusFlows(data: Record, quiet: boolean): string; /** * Render `cleo nexus context` human output. */ export declare function renderNexusContext(data: Record, quiet: boolean): string; /** * Render `cleo nexus impact` human output. */ export declare function renderNexusImpact(data: Record, quiet: boolean): string; /** * Render `cleo nexus analyze` human output. */ export declare function renderNexusAnalyze(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects list` human output. */ export declare function renderNexusProjectsList(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects register` human output. */ export declare function renderNexusProjectsRegister(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects remove` human output. */ export declare function renderNexusProjectsRemove(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects scan` human output. */ export declare function renderNexusProjectsScan(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects clean` human output. */ export declare function renderNexusProjectsClean(data: Record, quiet: boolean): string; /** * Render `cleo nexus projects clean` preview human output (shown before confirmation). * Used for the preview phase (always dry-run first). */ export declare function renderNexusProjectsCleanPreview(data: Record, _quiet: boolean): string; /** * Render `cleo nexus refresh-bridge` human output. */ export declare function renderNexusRefreshBridge(data: Record, quiet: boolean): string; /** * Render `cleo nexus route-map` human output. * * TODO(T10128 B3 primitive ready): collapse the inline markdown table into * the B3 table primitive once B3 lands. Today the table is hand-rolled * because B3 (animations primitives) is not yet merged. */ export declare function renderNexusRouteMap(data: Record, quiet: boolean): string; /** * Render `cleo nexus shape-check` human output. * * TODO(T10128 B3 primitive ready): collapse the inline markdown table into * the B3 table primitive once B3 lands. */ export declare function renderNexusShapeCheck(data: Record, quiet: boolean): string; /** * Render `cleo nexus full-context` human output. */ export declare function renderNexusFullContext(data: Record, quiet: boolean): string; /** * Render `cleo nexus why` human output. */ export declare function renderNexusWhy(data: Record, quiet: boolean): string; /** * Render `cleo nexus impact-full` human output. */ export declare function renderNexusImpactFull(data: Record, quiet: boolean): string; /** * Render `cleo nexus query` human output. */ export declare function renderNexusQuery(data: Record, quiet: boolean): string; /** * Render `cleo nexus search-code` human output timing line. */ export declare function renderNexusSearchCode(data: Record, quiet: boolean): string; /** * Render `cleo nexus hot-paths` human output. * * TODO(T10128 B3 primitive ready): collapse the inline markdown table into * the B3 table primitive once B3 lands. */ export declare function renderNexusHotPaths(data: Record, quiet: boolean): string; /** * Render `cleo nexus hot-nodes` human output. * * TODO(T10128 B3 primitive ready): collapse the inline markdown table into * the B3 table primitive once B3 lands. */ export declare function renderNexusHotNodes(data: Record, quiet: boolean): string; //# sourceMappingURL=index.d.ts.map