import { Storage, AccountStorageData, AccountMetadata } from "./storage"; import { WalletType, DeterministicWallet, NonDeterministicWallet } from "./wallet"; export declare class MemoryStorage implements Storage { storage: { [key: string]: string; }; constructor(); open(): Promise; close(): Promise; getAccount(address: string): Promise; getHDWallet(uuid: string): Promise; storeAccount(wallet: AccountStorageData): Promise; listWallets(type: WalletType, hidden: boolean): Promise; private getEntry; }