import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { IERC20WithEvents } from "./IERC20WithEvents";
export declare class IERC20WithEventsFactory {
    static connect(address: string, signerOrProvider: Signer | Provider): IERC20WithEvents;
}
