/** * State Route * * GET /state - Get full state snapshot. * GET /state/:slice - Get a specific state slice. */ import { Hono } from "hono"; import type { Runtime, Action } from "@gizmo-ai/runtime"; /** * Create the state routes */ export declare function createStateRoute, A extends Action>(runtime: Runtime, serializer: (value: unknown) => string): Hono; //# sourceMappingURL=state.d.ts.map