declare type EngineType = 'JavaScriptCore' | 'Hermes' | 'NodeJs' | 'Browser';
declare type EnvironmentType = 'NodeJs' | 'NativeMobile' | 'Browser';
declare const PlatformType: EngineType;
declare const Environment: EnvironmentType;
export { PlatformType, Environment };