/** * Stream Actions Route * * GET /stream/actions - Server-Sent Events stream for execution lifecycle and action events. * Ideal for debugging, observability, and action-focused tooling. */ import { Hono } from "hono"; import type { Runtime, Action } from "@gizmo-ai/runtime"; import type { EventEmitter } from "events"; export interface StreamActionsRouteConfig, A extends Action> { runtime: Runtime; bus: EventEmitter; heartbeatInterval: number; serializer: (value: unknown) => string; } /** * Create the actions stream route */ export declare function createStreamActionsRoute, A extends Action>(config: StreamActionsRouteConfig): Hono; //# sourceMappingURL=stream-actions.d.ts.map