import { type InstrumentationRuntime } from "#instrumentation/runtime.js";
import { type TraceCapturePolicy } from "#tracing/otel-declaration.js";
/** Zero-config local tracing admits every session in the development worker. @internal */
export declare const localTracePolicy: TraceCapturePolicy;
/** Installs the zero-config local OTel runtime once in an `eve dev` worker. */
export declare function installLocalInstrumentationRuntime(input: {
    readonly appRoot: string;
    readonly frameworkVersion: string;
    readonly serviceName: string;
}): InstrumentationRuntime;
