import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../common"; export interface IFeeManagerInterface extends Interface { getFunction(nameOrSignature: "instanceFeeWithUpdate"): FunctionFragment; encodeFunctionData(functionFragment: "instanceFeeWithUpdate", values: [AddressLike]): string; decodeFunctionResult(functionFragment: "instanceFeeWithUpdate", data: BytesLike): Result; } export interface IFeeManager extends BaseContract { connect(runner?: ContractRunner | null): IFeeManager; waitForDeployment(): Promise; interface: IFeeManagerInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; instanceFeeWithUpdate: TypedContractMethod<[ _instance: AddressLike ], [ bigint ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "instanceFeeWithUpdate"): TypedContractMethod<[_instance: AddressLike], [bigint], "nonpayable">; filters: {}; }