/** * Sets the `process.env` keys with the values from `env`. * * @param env The environment variables to set on the `process.env`. */ declare function setEnv(env: NodeJS.ProcessEnv): void; /** True if the process platform is windows. */ declare const isWindows: boolean; /** Whether the process is running in WSL. */ declare const isWsl: boolean; export { isWindows, isWsl, setEnv };