import type { Cache, CacheOptions, DefaultRegistry } from './index.js'; export declare const DEFAULT_EXPIRATION: { lru: number; ttl: number; }; export declare const DEFAULT_ENTRY_STATE: { retained: { lru: boolean; ttl: number; }; }; export declare function buildCache(options?: CacheOptions): Cache; export declare function assert(value: T, message: string | (() => string)): asserts value; //# sourceMappingURL=cache.d.ts.map