import { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers"; import { FunctionFragment, Result, EventFragment } from "@ethersproject/abi"; import { Listener, Provider } from "@ethersproject/providers"; import { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common"; export interface IControlDeployerInterface extends utils.Interface { functions: { "deployControl(uint256,address,string)": FunctionFragment; }; encodeFunctionData(functionFragment: "deployControl", values: [BigNumberish, string, string]): string; decodeFunctionResult(functionFragment: "deployControl", data: BytesLike): Result; events: { "DeployedControl(address,address,address)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "DeployedControl"): EventFragment; } export declare type DeployedControlEvent = TypedEvent<[ string, string, string ], { registry: string; deployer: string; control: string; }>; export declare type DeployedControlEventFilter = TypedEventFilter; export interface IControlDeployer extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: IControlDeployerInterface; 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: { deployControl(nonce: BigNumberish, deployer: string, uri: string, overrides?: Overrides & { from?: string | Promise; }): Promise; }; deployControl(nonce: BigNumberish, deployer: string, uri: string, overrides?: Overrides & { from?: string | Promise; }): Promise; callStatic: { deployControl(nonce: BigNumberish, deployer: string, uri: string, overrides?: CallOverrides): Promise; }; filters: { "DeployedControl(address,address,address)"(registry?: string | null, deployer?: string | null, control?: string | null): DeployedControlEventFilter; DeployedControl(registry?: string | null, deployer?: string | null, control?: string | null): DeployedControlEventFilter; }; estimateGas: { deployControl(nonce: BigNumberish, deployer: string, uri: string, overrides?: Overrides & { from?: string | Promise; }): Promise; }; populateTransaction: { deployControl(nonce: BigNumberish, deployer: string, uri: string, overrides?: Overrides & { from?: string | Promise; }): Promise; }; }