import * as React from 'react'; import mapboxgl from 'mapbox-gl'; declare const useMap: () => MapType; declare const MapProvider: React.FC>; type MapType = undefined | mapboxgl.Map; export { MapProvider, useMap };