import React from 'react'; import './types'; interface MapContextValue { map: google.maps.Map | null; } export declare const MapContext: React.Context; export interface LatLng { latitude: number; longitude: number; } export interface Region extends LatLng { latitudeDelta: number; longitudeDelta: number; } export interface MapPressEvent { nativeEvent: { coordinate: LatLng; }; } interface MapViewProps { style?: object; initialRegion?: Region; onPress?: (event: MapPressEvent) => void; children?: React.ReactNode; } declare const MapView: React.ForwardRefExoticComponent>; export default MapView; //# sourceMappingURL=MapView.d.ts.map