import { IEvent } from '../interfaces/ievent'; export declare type TEvent = Readonly & { start: string; end: string; }>; export declare function isTEvent(test: unknown): test is TEvent; export declare function encodeIEvent(event: IEvent): TEvent; export declare function decodeIEvent(encoded: TEvent): IEvent;