import "../register-factories.js"; import type { AcpEvent } from "./types.js"; import { type SpawnOptions, type SpawnResult } from "../types.js"; export interface SpawnStreamingOptions extends SpawnOptions { agentId: string; } export interface SpawnStreamingResult { events: AsyncIterable; done: Promise; } export declare function spawnStreaming(input: SpawnStreamingOptions): SpawnStreamingResult;