import { Signer, ContractFactory, Overrides } from "ethers"; import type { Provider, TransactionRequest } from "@ethersproject/providers"; import type { PromiseOrValue } from "../../../../common"; import type { Events, EventsInterface } from "../../../../contracts/common/libraries/Events"; type EventsConstructorParams = [signer?: Signer] | ConstructorParameters; export declare class Events__factory extends ContractFactory { constructor(...args: EventsConstructorParams); deploy(overrides?: Overrides & { from?: PromiseOrValue; }): Promise; getDeployTransaction(overrides?: Overrides & { from?: PromiseOrValue; }): TransactionRequest; attach(address: string): Events; connect(signer: Signer): Events__factory; static readonly bytecode = "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122022d7b9bf7e6cb75f4be17c594d32364e4539f9442fc25ecb08649ba7dccf36ee64736f6c63430008110033"; static readonly abi: { anonymous: boolean; inputs: { indexed: boolean; internalType: string; name: string; type: string; }[]; name: string; type: string; }[]; static createInterface(): EventsInterface; static connect(address: string, signerOrProvider: Signer | Provider): Events; } export {};