export declare const globalEnv: { [name: string]: any; }; export declare const isNode: boolean; export declare const isWin: boolean; /** Portable replacement for location.origin. */ export declare const origin: string; export declare function nodeRequire(name: string): any; /** Evaluate source code in the global scope. */ export declare function globalEval(code: string): () => any;