import type { BaseContract, BytesLike, Signer, utils } from "ethers"; import type { EventFragment } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../common"; export interface IAddressProviderEventsInterface extends utils.Interface { functions: {}; events: { "AddressSet(bytes32,address)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "AddressSet"): EventFragment; } export interface AddressSetEventObject { service: string; newAddress: string; } export declare type AddressSetEvent = TypedEvent<[ string, string ], AddressSetEventObject>; export declare type AddressSetEventFilter = TypedEventFilter; export interface IAddressProviderEvents extends BaseContract { contractName: "IAddressProviderEvents"; connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: IAddressProviderEventsInterface; queryFilter(event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>; listeners(eventFilter?: TypedEventFilter): Array>; listeners(eventName?: string): Array; removeAllListeners(eventFilter: TypedEventFilter): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: {}; callStatic: {}; filters: { "AddressSet(bytes32,address)"(service?: PromiseOrValue | null, newAddress?: PromiseOrValue | null): AddressSetEventFilter; AddressSet(service?: PromiseOrValue | null, newAddress?: PromiseOrValue | null): AddressSetEventFilter; }; estimateGas: {}; populateTransaction: {}; }