1import { requireNativeViewManager, NativeModulesProxy } from 'expo-modules-core'; 2import * as React from 'react'; 3 4import { NativeExpoGoogleMapsViewProps, NativeExpoAppleMapsViewProps } from './Map.types'; 5 6export const NativeExpoGoogleMapsView = requireNativeViewManager( 7 'ExpoGoogleMaps' 8) as React.ComponentType<NativeExpoGoogleMapsViewProps>; 9 10export const NativeExpoAppleMapsView = requireNativeViewManager( 11 'ExpoAppleMaps' 12) as React.ComponentType<NativeExpoAppleMapsViewProps>; 13 14export const NativeExpoAppleMapsModule = NativeModulesProxy.ExpoAppleMaps; 15export const NativeExpoGoogleMapsModule = NativeModulesProxy.ExpoGoogleMaps; 16