import { DataType } from '../types'; import { ABI } from './abi'; export type FEVMLog = { address: string; data: string; topics: Array; removed: boolean; logIndex: string; transactionIndex: string; transactionHash: string; blockHash: string; blockNumber: string; }; /** * Returns a descriptor with values based on the provided FEVM logs and ABI * @param logs the FEVM logs to describe * @param abi the ABI of the contract that performed this transaction * @returns the described FEVM logs */ export declare const describeFEVMLogs: (logs: Array, abi: ABI) => DataType | null; //# sourceMappingURL=logs.d.ts.map