import type Sentry from '@sentry/node'; import type { Span, StartSpanOpts, Tracer } from './tracing'; export declare class SentryTracing implements Tracer { private readonly sentry; constructor(sentry: Pick); startSpan(options: StartSpanOpts, spanCb: (span: Span) => Promise): Promise; }