/** * File content cache to avoid redundant disk I/O. */ /** * Read a file with caching to avoid redundant disk I/O */ export declare function cachedReadFile(absolutePath: string): Promise; /** * Clear the file cache (useful for testing) */ export declare function clearFileCache(): void; //# sourceMappingURL=cache.d.ts.map