import type { ICache } from '../types/Cache.js'; export default class UniversalCache implements ICache { #private; constructor(persistent: boolean, persistent_directory?: string); get cache_dir(): string; get(key: string): Promise; set(key: string, value: ArrayBuffer): Promise; remove(key: string): Promise; }