import type { MemoryCacheDelegate, MemoryCachePolicyInterface } from '../types/type'; /** * * Free policy is a policy that doesn't care about anything, just cache it */ export declare class FreePolicy implements MemoryCachePolicyInterface { constructor(); onAccess(_cache: Map, _key: string): void; onEvict(_cache: Map, _delegate?: MemoryCacheDelegate): void; get dataSource(): { [key in string]: number; }; set dataSource(_data: { [key in string]: number; }); } //# sourceMappingURL=MemoryCacheFreePolicy.d.ts.map