export interface Span { readonly traceId: string; readonly spanId: string; setAttribute(key: string, value: unknown): void; end(): void; } export interface Tracer { startSpan(name: string, attributes?: Record): Span; } export declare namespace Tracer { const Token = "Tracer"; }