import { IKeyValueStorage } from "../shared"; export declare class KeyValueStorage implements IKeyValueStorage { private readonly localStorage; getKeys(): Promise; getEntries(): Promise<[string, T][]>; getItem(key: string): Promise; setItem(key: string, value: T): Promise; removeItem(key: string): Promise; } export default KeyValueStorage; //# sourceMappingURL=index.d.ts.map