/** * Fresh-run entry point for the deterministic engine (spec §4). Validates the workflow's optional * top-level input, emits `run-started`, then delegates to the shared step loop. * * Zero imports from PI, `node:fs`, or any network lib — see src/engine/types.ts. */ import type { WorkflowDefinition } from "../flow/types.ts"; import type { HostPort, RunOptions, RunResult } from "./types.ts"; export declare function runWorkflow(workflow: WorkflowDefinition, initialInput: unknown, host: HostPort, options?: RunOptions): Promise; //# sourceMappingURL=run-workflow.d.ts.map