/** * Extract the current OTel trace context for use by Pipeline B spans. * Returns undefined values when no OTel context is active, allowing * Pipeline B spans to share the same trace as Pipeline A spans. */ export declare function getActiveTraceContext(): { traceId?: string; parentSpanId?: string; };