/** * render — entry point for the CLI's static Ink rendering. * * Single responsibility: render a completed `CommandResult` through the * tool-agnostic `App` component. Tools that drive a stateful live view * (fitness, graph) own their own renderers in their packages and * register them via `cli.registerLiveView`; this file no longer mounts * any tool-specific component. Layer 5 Phase 3 (audit 2026-05-23 F3). */ import { type ProjectHeaderProps } from './App.js'; import type { CommandResult } from '@opensip-cli/contracts'; import type { UiContext } from '@opensip-cli/core'; /** Render a static command result. */ export declare function renderApp(result: CommandResult, projectHeader?: ProjectHeaderProps, ui?: UiContext): Promise; //# sourceMappingURL=render.d.ts.map