export interface EventOut {
    eventType: string;
    payload: string;
    timestamp: Date;
}
export declare const EventOutSerializer: {
    _fromJsonObject(object: any): EventOut;
    _toJsonObject(self: EventOut): any;
};
