import { type StepInput, type WorkflowInput } from "./workflow-create.js"; export interface WorkflowUpdateParams { workflowId: string; accountId: string; name?: string; description?: string; steps?: StepInput[]; /** Replace the declared input contract (full replacement, like steps). */ inputs?: WorkflowInput[]; status?: "active" | "paused"; } export declare function workflowUpdate(params: WorkflowUpdateParams): Promise; //# sourceMappingURL=workflow-update.d.ts.map