import type { EVMAddress } from "@rarible/types"; import type { Ethereum, EthereumTransaction } from "@rarible/ethereum-provider"; import type { SendFunction } from "../common/send-transaction"; export declare function transferErc721(ethereum: Ethereum, send: SendFunction, contract: EVMAddress, from: EVMAddress, to: EVMAddress, tokenId: string): Promise;