import type { TelemetryConfig } from "./types.js"; /** * Baseline {@link TelemetryConfig} used when no `telemetry:` block is present * in `skaile.yaml` and no environment variables are set. Provider is `"none"`, * so no I/O occurs. All capture flags except `prompt_content` are enabled so * that switching to `"otel"` produces useful traces without further config. * * @docLink packages/telemetry/concepts#configuration */ export declare const DEFAULT_TELEMETRY_CONFIG: TelemetryConfig; export declare function resolveTelemetryConfig(raw: Record): TelemetryConfig; //# sourceMappingURL=config.d.ts.map