1declare global { 2 var ExpoModules: undefined | { 3 [key: string]: any; 4 }; 5} 6/** 7 * Imports the native module registered with given name. In the first place it tries to load 8 * the module installed through the JSI host object and then falls back to the bridge proxy module. 9 * Notice that the modules loaded from the proxy may not support some features like synchronous functions. 10 * 11 * @param moduleName Name of the requested native module. 12 * @returns Object representing the native module. 13 * @throws Error when there is no native module with given name. 14 */ 15export declare function requireNativeModule<ModuleType = any>(moduleName: string): ModuleType; 16//# sourceMappingURL=requireNativeModule.d.ts.map