import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const updateWorkflowTool: Tool; export declare function updateWorkflow(auth: AuthContext, args: { workspaceId?: string; workflowId: string; name?: string; description?: string; agentIds?: string[]; skillIds?: string[]; tagIds?: string[]; projectIds?: string[]; projectConfig?: { contextLibraryId?: string; phaseCount?: number; completedCount?: number; tagIds?: { phase?: string; statusPending?: string; statusPassing?: string; statusClosed?: string; }; }; isPrivate?: boolean; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=update-workflow.d.ts.map