import { EVMInspectionCommandConfig } from '@chainlink/evm-gauntlet'; import { ContractFactory } from 'ethers'; import { OffchainConfig } from '../../../../lib/encoding'; import { DynamicConfigUI_1_2, ExecReportingPluginConfig, StaticConfig } from '../types'; type QueryResult = { destinationTokens: string[]; staticConfig: StaticConfig; supportedTokens: string[]; tokenLimitAdmin: string; transmitters: string[]; latestConfigDetails: { configCount: number; blockNumber: number; configDigest: string; }; latestConfigDigestAndEpoch: { scanLogs: boolean; configDigest: string; }; owner: string; typeAndVersion: string; dynamicConfig: DynamicConfigUI_1_2; ocr2Config?: { signers: string[]; transmitters: string[]; f: number; offchainConfigVersion: string; offchainConfig: OffchainConfig; }; }; export type UserInput = { queryMultiBlock?: boolean; }; type ContractInput = string[][]; 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=inspect.d.ts.map