import { Tool } from '@modelcontextprotocol/sdk/types.js'; /** * Register all available tools. */ export declare function registerTools(): Tool[]; /** * Handle tool calls by routing to the appropriate handler. */ export declare function handleToolCall(name: string, args: Record, projectPath: string): Promise<{ content: { type: 'text'; text: string; }[]; isError?: boolean; }>;