import { type EnvBlockAction, type PlanContext } from "../internals/plan.js"; import { type OtelLoggingOptions } from "./templates.js"; /** aih-managed region scope for the telemetry env block. */ export declare const TELEMETRY_SCOPE = "telemetry"; /** * Build the env-block action that injects the OTel vars into the host shell * profile. Emitted as an `envblock` (not a plain write) so it COMPOSES with the * other workstation blocks (certs/hardware/vdi) when `bootstrap` targets the same * profile — the executor folds each scope in rather than clobbering. Idempotent: * re-running replaces only the managed `telemetry` region. */ export declare function buildProfileWrite(ctx: PlanContext, endpoint: string, logging?: OtelLoggingOptions): EnvBlockAction;