import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers'; import { ERC721EWFactory } from '../../types'; export declare type ERC721EWFactoryArgs = { forwarder: string; }; export declare class ERC721EWFactoryDeployer { private _signer; constructor(signer: SignerWithAddress); deploy(args: ERC721EWFactoryArgs): Promise; }