import { IEventInfo } from '../interfaces/ievent-info'; export declare type TEventInfo = Readonly & { logs: { [key: string]: number; }; }>; export declare type TEventInfoWithFirst = TEventInfo & { utcFirst: number; }; export declare type TEventInfoWithLast = TEventInfo & { utcLast: number; }; export declare function isTEventInfo(test: unknown): test is TEventInfo; export declare function encodeIEventInfo(eventInfo: IEventInfo): TEventInfo; export declare function decodeIEventInfo(encoded: TEventInfo): IEventInfo;