import { type Tracer } from "@opentelemetry/api"; export interface ObservabilityService { readonly tracer: Tracer; shutdown(): Promise; } /** Starts the local daemon telemetry SDK. Prometheus is loopback-only. */ export declare function startObservability(environment?: NodeJS.ProcessEnv): ObservabilityService;