import type { ONISkeleton, ONIConfig } from "./types.js"; export interface StreamEvent { event: string; name?: string; data: unknown; run_id: string; tags?: string[]; metadata?: Record; } /** * Stream graph execution events using the v2 event protocol. * Wraps the debug stream mode into higher-level lifecycle events. */ export declare function streamEvents(app: ONISkeleton, input: Partial, config?: ONIConfig): AsyncGenerator; //# sourceMappingURL=stream-events.d.ts.map