import { LRUStorageConstructor, LRUStorageInterface } from "../../types.js"; export default class LRUStorage implements LRUStorageInterface { private _opts; private _cache; constructor(opts: LRUStorageConstructor); toJSON(): undefined; init(): Promise; getItem(key: string): Promise; setItem(key: string, value: any): Promise; removeItem(key: string): Promise; clear(): Promise; keys(): Promise; destroy(): Promise; }