import { BaseCache } from './base.js'; import '../internals/serializable.js'; import '../internals/types.js'; import '../internals/helpers/guards.js'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare class UnconstrainedCache extends BaseCache { protected readonly provider: Map; get(key: string): Promise; has(key: string): Promise; clear(): Promise; delete(key: string): Promise; set(key: string, value: T): Promise; size(): Promise; createSnapshot(): { enabled: boolean; provider: Map; }; loadSnapshot(snapshot: ReturnType): void; } export { UnconstrainedCache };