import { ToolDef } from '../../ai/tools.js'; export declare const FSTools: ToolDef[]; export declare const FSToolImplementations: { list_files: (args: { path: string; depth?: number; }, rootDir: string) => Promise; read_file: (args: { path: string; }, rootDir: string) => Promise; grep_search: (args: { query: string; path?: string; }, rootDir: string) => Promise; }; //# sourceMappingURL=fs.d.ts.map