export declare const codeReviewTool: { name: string; description: string; inputSchema: { type: "object"; properties: { code: { type: string; description: string; }; language: { type: string; description: string; }; focus: { type: string; description: string; enum: string[]; }; }; required: string[]; }; }; export declare function executeCodeReview(args: { code: string; language: string; focus?: string; }): Promise; //# sourceMappingURL=codeReview.d.ts.map