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