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