export declare class LimitedCache { readonly maxLength: number; private length; private head; private tail; private cache; constructor(maxLength: number); set(k: string, v: T): void; get(k: string): T | null; } //# sourceMappingURL=limitedCache.d.ts.map