import type { SourceState } from './stream-renderer-source.js'; import type { Writer } from '../slash/types.js'; import type { CardSpec } from '../render.js'; import type { OrchestratorCtx } from './stream-renderer-orchestrator.js'; export declare function emitPanel(spec: CardSpec, source: SourceState, ctx: OrchestratorCtx): void; export declare function commitThinkingPhase(source: SourceState, ctx: OrchestratorCtx): void; export declare function finalizeOrchestrator(source: SourceState, ctx: OrchestratorCtx): void; export declare function emitMarkdown(text: string, out: Writer): void; export declare function emitErrorBox(err: Error, out: Writer): void; export declare function flushToolLaneToScrollback(ctx: OrchestratorCtx): void;