import Transaction from './Transaction'; import { ITxJSON } from '../types'; import { default as DataEntry } from './DataEntry'; import Binary from '../Binary'; export default class Data extends Transaction { static readonly TYPE = 12; data: DataEntry[]; constructor(data: Record | DataEntry[]); private dataToBinary; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; get dict(): Record; static from(data: ITxJSON): Data; }