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