import type { StorageAdapter } from './storage.js'; export declare class IndexedDbStorage implements StorageAdapter { #private; constructor(); get(key: string): Promise; set(key: string, val: any): Promise; static clear(): Promise; }