import Transaction from './Transaction'; import { ISigner, ITxJSON } from '../types'; export default class Lease extends Transaction { static readonly TYPE = 8; recipient: string; amount: number; constructor(recipient: string | ISigner, amount: number); private toBinaryV2; private toBinaryV3; toBinary(): Uint8Array; toJSON(): ITxJSON; static from(data: ITxJSON): Lease; }