import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const createWorkflowTool: Tool; export declare function createWorkflow(auth: AuthContext, args: { workspaceId?: string; name: string; description?: string; agentIds?: string[]; skillIds?: string[]; tagIds?: string[]; projectIds?: string[]; isPrivate?: boolean; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=create-workflow.d.ts.map