import Transaction from './Transaction'; import { ITxJSON } from '../types'; export default class SetScript extends Transaction { static readonly TYPE = 13; script?: string; constructor(compiledScript?: string); private toBinaryV1; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; static from(data: ITxJSON): SetScript; }