import { EthqlContext } from '@ethql/base'; import { GraphQLResolveInfo } from 'graphql'; import { EthqlBlock, EthqlLog } from '../model'; /** * Attempts to decode the log. */ declare function decoded(obj: EthqlLog, args: any, context: EthqlContext): Promise; /** * Gets the block this log belongs to. */ declare function block(obj: EthqlLog, args: any, { services }: EthqlContext, info: GraphQLResolveInfo): Promise; declare const _default: { Log: { block: typeof block; decoded: typeof decoded; }; }; export default _default; //# sourceMappingURL=log.d.ts.map