import { IToolFormatter } from './ToolFormatterRegistry.js'; import { ExtendedToolExecutionResult } from './types.js'; /** * 代码相关工具格式化器 */ export declare class CodeFormatter implements IToolFormatter { name: string; supportedTools: string[]; format(result: ExtendedToolExecutionResult): string; private formatAnalysisResult; private formatLintResult; private formatTestResult; private formatCompileResult; private formatGenericCodeResult; private getComplexityColor; private getSeverityIcon; formatError(error: Error): string; } //# sourceMappingURL=CodeFormatter.d.ts.map