import type { AgentStreamPart } from '../types/index.js'; /** * Processes a stream from the AI SDK and yields canonical AgentStreamParts. * This deduplicates the stream-iteration logic from LLMAgent, TriageAgent, and FlowManager. */ export declare function processAIStream(stream: AsyncIterable): AsyncGenerator;