import { Tool } from '@modelcontextprotocol/sdk/types.js'; /** * Get all analyze tools. */ export declare function getAnalyzeTools(): Tool[]; /** * Handle analyze tool calls. */ export declare function handleAnalyzeTool(name: string, args: Record, projectPath: string): Promise<{ content: { type: 'text'; text: string; }[]; isError?: boolean; }>;