/** * Author: Srilal S. Siriwardhane * Email: SrilalS@99x.io **/ export declare class DetectEnv { /** * * @returns {boolean} * Check if the current environment is NodeJS or Browser. */ static isNode(): boolean; static isBrowser(): boolean; }