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