import { Contract as EthersContract, ContractFactory as EthersContractFactory } from '@ethersproject/contracts'; /** * The Contract class is a wrapper around the Contract class from ethers.js and * is exported here for convenience. * * @public */ export declare class Contract extends EthersContract { } /** * The ContractFactory class is a wrapper around the ContractFactory class from * ethers.js and is exported here for convenience. * * @public */ export declare class ContractFactory extends EthersContractFactory { }