import { LocalStore, LocalWallet } from './LocalKeyStore'; export interface LocalStringStoreStorage { readonly setItem: (key: string, value: string) => Promise; readonly getItem: (key: string) => Promise; readonly removeItem: (key: string) => Promise; readonly getAllKeys: () => Promise; } export declare class LocalStringStore implements LocalStore { readonly storage: LocalStringStoreStorage; constructor(storage: LocalStringStoreStorage); getWallets(): Promise; saveWallet(wallet: LocalWallet): Promise; deleteWallet(wallet: LocalWallet): Promise; private getKey; }