import type { EVMAddress } from "@rarible/types"; import type { Ethereum, EthereumContract } from "@rarible/ethereum-provider"; import type { Address } from "@rarible/types"; import type { AbiItem } from "../../common/abi-item"; export declare function createErc1155Contract(ethereum: Ethereum, address?: Address | EVMAddress): EthereumContract; export declare const erc1155Abi: AbiItem[];