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