import type { CacheService } from './cache-service.js'; /** * In-memory {@link CacheService} with lazy TTL expiry. * * Entries are stored with an optional expiration time. On `get`, expired * entries are automatically removed and treated as cache misses. * * TTL is checked on access only — no background timers or sweeps. */ export declare function InMemoryCacheService(): CacheService; export type InMemoryCacheServiceType = ReturnType; //# sourceMappingURL=in-memory-cache-service.d.ts.map