import { NativeModule } from 'expo'; export declare enum Environment { /** Running on an iOS Simulator or Android Emulator */ SIMULATOR = "SIMULATOR", /** TestFlight (iOS) or any pre-release / non-Play-Store build (Android) */ TESTFLIGHT = "TESTFLIGHT", /** Production build downloaded from the App Store / Play Store */ PRODUCTION = "PRODUCTION", /** Indeterminate runtime; detection not yet possible */ UNKNOWN = "UNKNOWN" } declare class ReactNativeReleaseTrackModule extends NativeModule { /** Detected runtime environment. */ environment: Environment; /** Returns the current runtime environment. */ getEnvironment(): Environment; } declare const _default: ReactNativeReleaseTrackModule; export default _default; //# sourceMappingURL=ReactNativeReleaseTrackModule.d.ts.map