export declare const codeWriteTool: { name: string; description: string; inputSchema: { type: "object"; properties: { requirement: { type: string; description: string; }; language: { type: string; description: string; }; framework: { type: string; description: string; }; context: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeCodeWrite(args: { requirement: string; language: string; framework?: string; context?: string; }): Promise; //# sourceMappingURL=codeWrite.d.ts.map