/** * Create Tool - Generate complete CTP tool from description */ interface CreateToolArgs { description: string; name?: string; category?: string; executionMode?: 'client' | 'server' | 'both'; } export declare function createTool(args: CreateToolArgs): Promise<{ content: { type: string; text: string; }[]; }>; export {}; //# sourceMappingURL=create-tool.d.ts.map