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