interface NetworkForRendering { title: string; prompt?: string | null; } /** * Render a network as structured markdown for LLM context. */ export declare function renderNetworkContext(network: NetworkForRendering): string; export {};