export declare abstract class IKeyValueStorage { abstract getKeys(): Promise; abstract getEntries(): Promise<[string, T][]>; abstract getItem(key: string): Promise; abstract setItem(key: string, value: T): Promise; abstract removeItem(key: string): Promise; } //# sourceMappingURL=index.d.ts.map