import { type Span, type Tracer } from '@opentelemetry/api'; export declare function getTracer(name?: string): Tracer; export declare function traceAsync(name: string, fn: (span: Span) => Promise, tracerName?: string): Promise; export declare function traceSync(name: string, fn: (span: Span) => T, tracerName?: string): T;