export declare enum EnvironmentType { BROWSER = 0, NODE = 1, BOTH_FEATURES = 2, UNKNOWN = 3 } /** Environment class detects the runtime environment */ export default class Environment { static environmentType: EnvironmentType; /** * determines the runtime environment */ static checkEnvironment(): void; } //# sourceMappingURL=environment.d.ts.map