import type { Event } from './event';
export interface ClientEvents {
    'events'?: Array<Event>;
    'timestamp': string;
}
