import type { TagsBase } from '../../../storage/BaseRecord'; import { BaseRecord } from '../../../storage/BaseRecord'; export interface SingleContextLruCacheItem { value: unknown; expiresAt?: number; } export interface SingleContextLruCacheProps { id?: string; createdAt?: Date; tags?: TagsBase; entries: Map; } export declare class SingleContextLruCacheRecord extends BaseRecord { entries: Map; static readonly type = "SingleContextLruCacheRecord"; readonly type = "SingleContextLruCacheRecord"; constructor(props: SingleContextLruCacheProps); getTags(): { [x: string]: import("../../../storage/BaseRecord").TagValue; [x: number]: never; }; }