import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers'; import { ERC721EFactory, ERC721EFactoryNoInterface, ERC721EFactoryWrongInterface } from '../../types'; export declare type ERC721EFactoryArgs = { forwarder: string; }; export declare class ERC721EFactoryDeployer { private _signer; constructor(signer: SignerWithAddress); deploy(args: ERC721EFactoryArgs): Promise; deployNoInterface(args: ERC721EFactoryArgs): Promise; deployWrongInterface(args: ERC721EFactoryArgs): Promise; }