import type { EnvVar } from "../internals/envfile.js"; import { type Action, type PlanContext } from "../internals/plan.js"; export declare const NODE_USE_SYSTEM_CA = "NODE_USE_SYSTEM_CA"; export declare const NODE_EXTRA_CA_CERTS = "NODE_EXTRA_CA_CERTS"; export declare function selectedNodeTrustEnv(env: NodeJS.ProcessEnv, vars: readonly EnvVar[]): NodeJS.ProcessEnv; export declare function unselectedNodeTrustKeys(vars: readonly EnvVar[]): string[]; export declare function nodeTrustEnvVars(extraCaPath?: string): EnvVar[]; export declare function macLaunchAgentPlist(label: string, key: string, value: string): string; export declare function nodeTrustPersistenceActions(ctx: PlanContext, vars: readonly EnvVar[]): Action[];