export default class Event { readonly id: string; readonly externalId?: string; readonly type: string; readonly revision: number; readonly dimensions: Record; readonly timestamp: Date; readonly ntpTimestamp: Date; constructor(id: string, type: string, typeRevision: number, dimensions: object, ntpTimeStamp: Date, externalId?: string); toObject(): Record; }