/** * Abort Route * * POST /abort - Abort the current execution. */ import { Hono } from "hono"; import type { Runtime, Action } from "@gizmo-ai/runtime"; /** * Create the abort route * * Note: The runtime's dispatch accepts ExecutionAction types internally, * so we create a properly typed abort action. */ export declare function createAbortRoute, A extends Action>(runtime: Runtime): Hono; //# sourceMappingURL=abort.d.ts.map