import Transaction from './Transaction'; import { IBinary, IPair, ITxJSON } from '../types'; export default class MappedAnchor extends Transaction { static readonly TYPE = 22; anchors: IPair[]; constructor(...anchors: IPair[]); /** Get binary for anchors as used by toBinary methods */ private anchorsBinary; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; static from(data: ITxJSON): MappedAnchor; }