/** The single-file workflow SDK prelude (plain ESM JavaScript). */ export declare function readWorkflowSdkSource(): Promise; /** * Compose a self-contained workflow component entrypoint: the SDK prelude * followed by the author's script body. Artifacts accept exactly one * entrypoint file, so the SDK is concatenated rather than imported; the * artifact digest therefore covers the exact SDK revision the pack ships. * * The body runs in the same module scope as the prelude and is expected to * end with a `runWorkflow(async ({ trigger, args, host }) => { ... })` call; * `agent()`, `parallel()`, `pipeline()`, and `log()` are in scope. */ export declare function composeWorkflowEntrypoint(body: string): Promise; //# sourceMappingURL=index.d.ts.map