import { AbiDefinition, Log, DecodedEvent, EventDescription } from '../interfaces'; import { Dictionary } from 'ramda'; /** * Find matching abi and decode logs with it * When abi is not found log is skipped */ export declare const decodeLogs: (abi: AbiDefinition[]) => (logs: Log[]) => DecodedEvent[]; export declare function eventsFromAbi(abi: AbiDefinition[]): Dictionary;