import type { IndexFiles } from "../../indexer/index-files.js"; export declare const astGrepTool: { name: string; description: string; inputSchema: { type: "object"; properties: { pattern: { type: string; description: string; }; language: { type: string; description: string; }; path: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleAstGrep(indexer: IndexFiles, args: Record): string;