import { Storage, AccountStorageData, AccountMetadata } from "./storage"; import { WalletType, NonDeterministicWallet, DeterministicWallet } from "./wallet"; export declare class RocksStorage implements Storage { private db; private path; constructor(path: string); open(): Promise; close(): Promise; getAccount(address: string): Promise; getHDWallet(uuid: string): Promise; storeAccount(wallet: AccountStorageData): Promise; listWallets(type: WalletType, hidden: boolean): Promise; private next; private end; private getData; private storeData; }