import type { AgentRunOptions } from '../agents.js'; type OutputCollectorOptions = Pick; export type OutputCollector = { append: (text: string) => void; flush: () => void; getOutput: () => string; }; export declare function createOutputCollector(options: OutputCollectorOptions): OutputCollector; export {}; //# sourceMappingURL=output-collector.d.ts.map