export interface SpanAttributes { [attributeKey: string]: SpanAttributeValue | undefined; } /** * Attribute values may be any non-nullish primitive value except an object. * * null or undefined attribute values are invalid and will result in undefined behavior. */ export declare type SpanAttributeValue = string | number | boolean | Array | Array | Array;