/** * Run a function within the root tracing context. * If tracing is not enabled, the function is called directly without wrapping. */ export declare function withRootContext(fn: () => T): T; /** * Shutdown the tracer provider and flush any pending spans. * Should be called before process exit. */ export declare function shutdownTracing(): Promise;