/// import { AliasHash } from '../../account_id/index.js'; import { GrumpkinAddress } from '../../address/index.js'; import { HashPath } from '../../merkle_tree/index.js'; export declare class AccountTx { merkleRoot: Buffer; accountPublicKey: GrumpkinAddress; newAccountPublicKey: GrumpkinAddress; newSpendingPublicKey1: GrumpkinAddress; newSpendingPublicKey2: GrumpkinAddress; aliasHash: AliasHash; create: boolean; migrate: boolean; accountIndex: number; accountPath: HashPath; spendingPublicKey: GrumpkinAddress; constructor(merkleRoot: Buffer, accountPublicKey: GrumpkinAddress, newAccountPublicKey: GrumpkinAddress, newSpendingPublicKey1: GrumpkinAddress, newSpendingPublicKey2: GrumpkinAddress, aliasHash: AliasHash, create: boolean, migrate: boolean, accountIndex: number, accountPath: HashPath, spendingPublicKey: GrumpkinAddress); toBuffer(): Buffer; static fromBuffer(buf: Buffer): AccountTx; } //# sourceMappingURL=account_tx.d.ts.map