import { WorkflowDefinition, WorkflowInstance } from "../contracts/workflow/workflow.contract.mjs"; //#region ../ai/src/workflow/workflow.d.ts /** * `ai.workflow(def)` — construct a `WorkflowInstance`. Validates the * definition, computes a stable structural signature, and wires up the * three-tier event subscription model. */ declare function workflow, TContext = unknown>(definition: WorkflowDefinition): WorkflowInstance; //#endregion export { workflow }; //# sourceMappingURL=workflow.d.mts.map