import type { NxCache } from './nx-cache.js'; /** * A memory-based implementation of the `NxCache` interface, e.g. for testing * scenarios. */ export declare class NxCacheInMemory implements NxCache { protected readonly data: Map>; get(hash: string): Promise>; has(hash: string): Promise; set(hash: string, data: Buffer): Promise; clear(): void; } //# sourceMappingURL=nx-cache-in-memory.d.ts.map