/** * Explain tool definition for MCP */ export declare const explainTool: { name: string; description: string; inputSchema: { type: "object"; properties: { path: { type: string; description: string; }; format: { type: string; enum: string[]; description: string; }; }; required: string[]; }; }; /** * Handle explain tool invocation */ export declare function handleExplain(params: Record): Promise; //# sourceMappingURL=explain.d.ts.map