//#region src/index.d.ts type Factory = (key: Key) => Value; declare class CachedFactory { #private; constructor(factory: Factory); clear(): void; entries(): MapIterator<[Key, Value]>; get(key: Key): Value; } //#endregion export { CachedFactory, Factory }; //# sourceMappingURL=index.d.ts.map