/** * @module index */ import { ILeaseParams, WithId, WithProofs, WithSender } from '../transactions'; import { TSeedTypes } from '../types'; import { LeaseTransaction } from '@waves/ts-types'; export declare function lease(params: ILeaseParams, seed: TSeedTypes): LeaseTransaction & WithId & WithProofs; export declare function lease(paramsOrTx: ILeaseParams & WithSender | LeaseTransaction, seed?: TSeedTypes): LeaseTransaction & WithId & WithProofs;