/// import { EVMInspectionCommandConfig } from '@chainlink/evm-gauntlet'; import { MCMOp } from '../../../types'; declare enum Status { NOT_EXECUTED = "NOT_EXECUTED", EXECUTED = "EXECUTED", UNKNOWN = "UNKNOWN" } export type QueryResult = { status: Status; }; export type UserInput = { transaction: MCMOp; skipBypasses?: boolean; }; type ContractInput = (string | Buffer)[][]; export declare const commandConfig: EVMInspectionCommandConfig; declare const _default: (deps: import("@chainlink/evm-gauntlet").InspectionDependencies, import("ethers").TransactionRequest, import("ethers").TransactionResponse, import("ethers").AbstractSigner>) => import("@chainlink/evm-gauntlet").CommandCtor>; export default _default; //# sourceMappingURL=inspectTransaction.d.ts.map