/** * A contract object is used to make calls to functions on the blockchain. * This method creates and returns a contract object using web3 * @param provider * @param abi * @param contractAddress */ export default function (provider: string, abi: Array, contractAddress: string): import("web3-eth-contract").Contract;