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