import { CacheBackend } from './index.js';

/**
 * Isolate-local in-memory backend for dev, test, and fallback use only.
 * Unbounded growth (no LRU/size cap in v1) and evaporates on restart — not a
 * production cache.
 */
declare function createMemoryBackend(): CacheBackend;

export { createMemoryBackend };
