import Transaction from './Transaction'; import { ITransfer, ITxJSON } from '../types'; import Binary from '../Binary'; export default class MassTransfer extends Transaction { static readonly TYPE = 11; transfers: ITransfer[]; attachment: Binary; constructor(transfers: ITransfer[], attachment?: Uint8Array | string); private transferBinary; private toBinaryV1; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; static from(data: ITxJSON): MassTransfer; }