export * from './create'; export * from './span-data'; export * from './spans'; export * from './traces'; export * from './context-vars'; export * from './processor-interface'; export * from './scope'; export * from './utils'; export * from './setup'; export * from './processors'; import { TracingProcessor } from './processor-interface'; /** * Adds a new trace processor. This processor will receive all traces/spans. */ export declare function addTraceProcessor(spanProcessor: TracingProcessor): void; /** * Set the list of trace processors. This will replace the current list of processors. */ export declare function setTraceProcessors(processors: TracingProcessor[]): void; /** * Set whether tracing is globally disabled. */ export declare function setTracingDisabled(disabled: boolean): void; /** * Set the OpenAI API key for the backend exporter. */ export declare function setTracingExportApiKey(apiKey: string): void;