import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers'; import { USDC } from '../../types'; export declare type USDCArgs = { name: string; symbol: string; }; export declare class USDCDeployer { private _signer; constructor(signer: SignerWithAddress); deploy(args: USDCArgs): Promise; }