/** * Validate an `environment.env` variable name. Returns a reason fragment when * invalid (for the caller to prefix with its own path), or `null` when valid. * A `=`, whitespace, or control character yields a name the OS/`spawn` would * mangle, drop, or (if it reaches a diagnostic) inject terminal escapes. */ export declare function validateEnvVarName(name: string): string | null; export declare function validateEnvVarValue(value: string): string | null; //# sourceMappingURL=env-var-name.d.ts.map