import { AbstractAssignmentCache } from './abstract-assignment-cache'; import { LRUCache } from './lru-cache'; /** * A cache that uses the LRU algorithm to evict the least recently used items. * * It is used to limit the size of the cache. * * The primary use case is for server-side SDKs, where the cache is shared across * multiple users. In this case, the cache size should be set to the maximum number * of users that can be active at the same time. * @param {number} maxSize - Maximum cache size */ export declare class LRUInMemoryAssignmentCache extends AbstractAssignmentCache { constructor(maxSize: number); } //# sourceMappingURL=lru-in-memory-assignment-cache.d.ts.map