import type { WorkflowInput } from "./workflow-create.js"; export interface StepSummary { stepId: string; type: "tool"; plugin: string; tool: string; params: Record | null; dependsOn: string[] | null; onFailure: string; retryLimit: number | null; outputKey: string | null; position: number; label: string; } export interface WorkflowFull { workflowId: string; name: string; description: string; status: string; inputs: WorkflowInput[]; steps: StepSummary[]; createdAt: string; updatedAt: string; } export declare function workflowGet(workflowId: string, accountId: string): Promise; //# sourceMappingURL=workflow-get.d.ts.map