import { ethers } from 'ethers'; import { BaseChainConfig } from './IStaticContractsInfo'; export declare class LocalhostWeb3Provider extends ethers.providers.JsonRpcProvider { wallet: ethers.Wallet; get isMetaMask(): boolean; get signer(): ethers.Signer; constructor(rpcUrl: string, wallet?: ethers.Wallet); fundWallet(walletToFund?: ethers.Wallet | string): Promise; mintMockNFT(config: BaseChainConfig): Promise; request({ method, params, }: { method: string; params?: unknown[]; }): Promise; } //# sourceMappingURL=LocalhostWeb3Provider.d.ts.map