/// import { FeatureCollection } from 'geojson'; import 'mapbox-gl/dist/mapbox-gl.css'; interface MapProps { geojson: FeatureCollection; mapboxToken?: string; } export default function Map({ geojson, mapboxToken }: MapProps): JSX.Element; export {};