import { SpanAttributes } 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?: SpanAttributes; }