//#region src/node/env.d.ts interface EnvOptions { /** @deprecated will probably be replaced by logLevel */ debug?: boolean; path?: string; filename?: string; encoding?: BufferEncoding; prefix?: string; env?: Record; mode?: string; } declare function parseEnvStringAlt(src: string): Record; declare function parseEnvString(src: string): Record; /** * Return a path relative to the current working directory */ declare function stringToPath(value?: string, defaultValue?: string): string; declare function valueToPath(value?: any, defaultValue?: string): string; declare const toPath: typeof valueToPath; declare function getEnvVariableRelaxed(name: string, env?: NodeJS.ProcessEnv): string | undefined; /** Populates process.env from .env file. */ declare function setupEnv(options?: EnvOptions): { parsed: Record; error?: undefined; } | { error: unknown; parsed?: undefined; }; //#endregion export { setupEnv as a, valueToPath as c, parseEnvStringAlt as i, getEnvVariableRelaxed as n, stringToPath as o, parseEnvString as r, toPath as s, EnvOptions as t }; //# sourceMappingURL=env-C3npYe8w.d.mts.map