import { FSWatcher } from 'chokidar'; interface CacheEntry { body: string; headers: Record; filePath: string; } /** * Cache for file transformations. */ export declare class PluginTransformCache { private fileWatcher; private rootDir; private cacheKeysPerFilePath; private lruCache; constructor(fileWatcher: FSWatcher, rootDir: string); get(cacheKey: string): Promise; set(filePath: string, body: string, headers: Record, cacheKey: string): Promise; } export {}; //# sourceMappingURL=PluginTransformCache.d.ts.map