/** * Reads `process.env` without requiring Node type definitions. * * The package ships browser entries, so `@types/node` is deliberately not in * `compilerOptions.types`. Access env through `globalThis` instead. */ export declare function processEnv(): Record; export declare function isProductionEnv(): boolean;