export declare const HOST_DANGEROUS_ENV_KEY_VALUES: readonly string[]; export declare const HOST_DANGEROUS_ENV_PREFIXES: readonly string[]; export declare const HOST_DANGEROUS_OVERRIDE_ENV_KEY_VALUES: readonly string[]; export declare const HOST_SHELL_WRAPPER_ALLOWED_OVERRIDE_ENV_KEY_VALUES: readonly string[]; export declare const HOST_DANGEROUS_ENV_KEYS: Set; export declare const HOST_DANGEROUS_OVERRIDE_ENV_KEYS: Set; export declare const HOST_SHELL_WRAPPER_ALLOWED_OVERRIDE_ENV_KEYS: Set; export declare function normalizeEnvVarKey(rawKey: string, options?: { portable?: boolean; }): string | null; export declare function isDangerousHostEnvVarName(rawKey: string): boolean; export declare function isDangerousHostEnvOverrideVarName(rawKey: string): boolean; export declare function sanitizeHostExecEnv(params?: { baseEnv?: Record; overrides?: Record | null; blockPathOverrides?: boolean; }): Record; export declare function sanitizeSystemRunEnvOverrides(params?: { overrides?: Record | null; shellWrapper?: boolean; }): Record | undefined;