/** * Runtime Detection Utilities * * Utilities for detecting the current JavaScript runtime environment. */ import type { CoreRuntimeEnvironment } from '@plyaz/types/core'; /** * Detect the current runtime environment */ export declare function detectRuntime(): CoreRuntimeEnvironment; /** * Load environment variables from a .env file */ export declare function loadEnvFile(envPath: string, verbose?: boolean): Promise; //# sourceMappingURL=runtime.d.ts.map