import { Tracer, TracerOptions, TracerProvider } from '@opentelemetry/api'; import { SpanAttributes } from '@sentry/core'; /** * A minimal OpenTelemetry TracerProvider which creates native Sentry spans. */ export declare class SentryTracerProvider implements TracerProvider { readonly resource?: { attributes: SpanAttributes; }; private readonly _tracers; constructor(options?: { resource?: { attributes: SpanAttributes; }; }); /** @inheritdoc */ getTracer(name: string, version?: string, options?: TracerOptions): Tracer; /** Compatibility with SDK tracer providers. */ forceFlush(): Promise; /** Compatibility with SDK tracer providers. */ shutdown(): Promise; } //# sourceMappingURL=tracerProvider.d.ts.map