declare const tempGlobalThis: typeof globalThis; declare const tempGlobal: typeof global; declare const tempProcess: typeof process; export { tempGlobalThis as globalThis, tempGlobal as global, tempProcess as process, }; type AssertTrue = never; type _TestHasProcessGlobal = AssertTrue< typeof globalThis extends { process: any } ? true : false >;