import type { SpanInterface } from "./types.js"; /** * Enable debug mode to trace context propagation issues. * When enabled, logs a stack trace whenever a span is created without parent context. */ export declare function enableContextDebug(): void; /** * Check if debug mode is enabled. */ export declare function isContextDebugEnabled(): boolean; export declare function getActiveSpan(): SpanInterface | undefined; export declare function isTracingSuppressed(): boolean; export declare function runWithSpan(span: SpanInterface, fn: () => T): T; export declare function suppressTracing(fn: () => T): T; //# sourceMappingURL=context.d.ts.map