import React from "react"; import { LatLng, Region } from "react-native-maps"; export type ZoomLocation = LatLng & { zoom?: number; }; interface MapViewContextType { region: Region | null; animateToLocation: (location: ZoomLocation) => void; } export declare const MapViewContext: React.Context; export {};