import type { CacheType } from '../types/index.js'; import type { CacheTagRegistry } from '../types/CacheTagRegistry.js'; export declare class InMemoryCacheTagRegistry implements CacheTagRegistry { private tagToKeys; private keyToTags; getCacheKeysForTags(tags: string[]): Promise>>; removeTags(tags: string[]): Promise; purgeCache(cacheType: CacheType): Promise; removeCacheItem(cacheType: CacheType, key: string | string[]): Promise; purgeEverything(): Promise; addCacheTags(cacheItemKey: string, cacheType: CacheType, cacheTags: string[]): Promise; }