import { type EvoPackManifest } from "../pack.ts"; export interface WorkflowPackTemplate { /** Workflow component id, also the pack name. */ id: string; /** Slash trigger, e.g. "/deep-review". */ trigger: string; version: string; description: string; /** Author script body; composed with the workflow SDK prelude. */ body: string; } export interface WrittenWorkflowPack { manifest: EvoPackManifest; integrity: string; } /** * Write a complete, importable single-workflow optimization pack into * `directory`: the composed workflow artifact plus an integrity-signed * pack.json. The staging component store is temporary and removed. */ export declare function writeWorkflowPack(directory: string, template: WorkflowPackTemplate): Promise; //# sourceMappingURL=write-pack.d.ts.map