/** * analyze_code Tool * * Runs CodeSlick's comprehensive security analysis on source code: * - 306 security checks across 5 languages * - OWASP 2025 compliance (95% coverage) * - CVSS 3.1 scoring (3.1-9.8 range) * - CWE/PCI-DSS mappings * - AI code detection (164 signals) */ export declare const analyzeCodeTool: { name: string; description: string; readOnlyHint: boolean; inputSchema: { type: string; properties: { code: { type: string; description: string; }; language: { type: string; enum: string[]; description: string; }; filename: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleAnalyzeCode(args: any): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=analyze.d.ts.map