/** * Detect the runtime environment */ export declare function detectEnvironment(): 'node' | 'react-native' | 'web'; /** * Check if running in React Native */ export declare function isReactNative(): boolean; /** * Check if running in Node.js */ export declare function isNode(): boolean; /** * Check if running in Web browser */ export declare function isWeb(): boolean; //# sourceMappingURL=environment.d.ts.map