export type EventEnvelope = { format_version: number; trace_id: string; project_id: string; span_id: string | null; parent_span_id: string | null; data: EventData; }; export type EventData = { type: string; timestamp: string; [key: string]: any; };