/// import { MasterKey } from '../masterKey'; import { EncryptedAccountValue } from '../walletdb/accountValue'; import { WalletDB } from '../walletdb/walletdb'; import { Account } from './account'; export declare class EncryptedAccount { private readonly walletDb; readonly salt: Buffer; readonly nonce: Buffer; readonly data: Buffer; constructor({ accountValue, walletDb, }: { accountValue: EncryptedAccountValue; walletDb: WalletDB; }); decrypt(masterKey: MasterKey): Account; serialize(): EncryptedAccountValue; } //# sourceMappingURL=encryptedAccount.d.ts.map