/** * Environment variable abstraction that works in Node and Edge runtimes */ /** * Get an environment variable value * Works in Node.js (process.env) and Edge runtimes where process.env may exist */ export declare function getEnv(name: string): string | undefined;