import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IPriceOracleV2Events, IPriceOracleV2EventsInterface } from "../../IPriceOracle.sol/IPriceOracleV2Events"; export declare class IPriceOracleV2Events__factory { static readonly abi: readonly [{ readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "token"; readonly type: "address"; }, { readonly indexed: true; readonly internalType: "address"; readonly name: "priceFeed"; readonly type: "address"; }]; readonly name: "NewPriceFeed"; readonly type: "event"; }]; static createInterface(): IPriceOracleV2EventsInterface; static connect(address: string, signerOrProvider: Signer | Provider): IPriceOracleV2Events; }