import Transaction from './Transaction'; import { IPublicAccount, ISigner, ITxJSON } from '../types'; export default class Register extends Transaction { static readonly TYPE = 20; accounts: IPublicAccount[]; constructor(...accounts: (IPublicAccount | ISigner)[]); accountToDict(account: IPublicAccount | ISigner): IPublicAccount; private accountsToBinary; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; static from(data: ITxJSON): Register; }