import { createCache } from './create.js'; import { createTenantCache } from './tenant.js'; /** In-memory caching namespace — TTL-based with stats, preload, and tenant-aware variants. */ export declare const cache: { /** Creates a single-key cache with TTL, a loader function, and invalidation. */ create: typeof createCache; /** Creates a per-tenant cache — each tenant gets its own TTL and loader keyed by tenant ID. */ createTenant: typeof createTenantCache; }; //# sourceMappingURL=namespace.d.ts.map