///
///
import type { MapViewProps as RNMapViewProps } from 'react-native-maps/lib/MapView';
/**
* Overrides MapView props to include additional web-specific props
*
* Add '/// '
* in the app.d.ts file of the app to get overriden types
*/
declare module 'react-native-maps' {
interface MapViewProps extends RNMapViewProps {
googleMapsApiKey?: string;
googleMapsMapId?: string;
loadingFallback?: JSX.Element;
options?: google.maps.MapOptions;
}
}