import type { EVMAddress } from "@rarible/types"; import type { EthereumTransaction } from "@rarible/ethereum-provider"; import type { Maybe } from "@rarible/types"; import type { Ethereum } from "../../../ethereum-provider"; import type { SendFunction } from "../common/send-transaction"; export declare function approveErc1155(ethereum: Maybe, send: SendFunction, contract: EVMAddress, owner: EVMAddress, operator: EVMAddress): Promise;