import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IACLEvents, IACLEventsInterface } from "../../IACL.sol/IACLEvents"; export declare class IACLEvents__factory { static readonly abi: readonly [{ readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "newAdmin"; readonly type: "address"; }]; readonly name: "PausableAdminAdded"; readonly type: "event"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "admin"; readonly type: "address"; }]; readonly name: "PausableAdminRemoved"; readonly type: "event"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "newAdmin"; readonly type: "address"; }]; readonly name: "UnpausableAdminAdded"; readonly type: "event"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "admin"; readonly type: "address"; }]; readonly name: "UnpausableAdminRemoved"; readonly type: "event"; }]; static createInterface(): IACLEventsInterface; static connect(address: string, signerOrProvider: Signer | Provider): IACLEvents; }