import { Attributes } from './attributes';
/** A text annotation with a set of attributes. */
export interface Event {
    /** The name of the event. */
    name: string;
    /** The attributes of the event. */
    attributes?: Attributes;
}
//# sourceMappingURL=Event.d.ts.map