import "@nomicfoundation/hardhat-chai-matchers"; import { Contract, ContractTransaction } from "ethers"; import { EventFragment, Interface } from "ethers/lib/utils"; import { TypedEvent } from "./typechain/common"; import { TransactionHashish } from "./types"; export type EventLog = { contract: Contract; event: EventFragment; args: any[]; }; export declare function getEvent(tx: ContractTransaction, contract: { interface: Interface; }, eventFragment: EventFragment): Promise; /** * Checks the tx for the exact logs specified including order, count, and args. */ export declare function expectAllEvents(tx: TransactionHashish | Promise, logs: EventLog[]): Promise; //# sourceMappingURL=events.d.ts.map