/** * Shared file-system utilities for CLI commands and MCP tools. */ import { type FileSystem } from "../../src/platform/index.js"; export declare function getFs(): FileSystem; export declare function ensureDir(path: string): Promise; export declare function directoryExists(path: string): Promise; export declare function fileExists(path: string): Promise; //# sourceMappingURL=fs.d.ts.map