import Event from "../model/Event"; declare class EventBuilder { private type; private revision; private ntpDate; private _id; private _externalId?; private _dimensions; constructor(type: string, revision: number); id(id: string): this; externalId(externalId: string): this; dimension(key: string, value: string | number | boolean): this; dimensions(dimensions: object): this; build(): Event; private addDimension; } export default EventBuilder;