import { EEvent, Store } from "@equilab/utils"; import { ExplorerParams } from "./"; interface ExplorerPayload { byId?: string | string[]; byHash?: string | string[]; byBlockHash?: string | string[]; byBlockNumber?: number | number[]; } export interface EventsParams extends ExplorerParams { method: "events"; } export declare const isEvents: (body: ExplorerParams) => body is EventsParams; export declare const createEventsFilter: (db: Store) => ({ payload }: EventsParams) => Promise; export {};