import type MapboxGL from 'mapbox-gl'; import type { ReactElement } from 'react'; import type { MarkerProps } from '../Map/Marker'; import { Marker } from '../Map/Marker'; export interface Popup { createContent: () => ReactElement; options?: MapboxGL.PopupOptions; } export declare const addMarker: ((mapboxgl: typeof MapboxGL, map: MapboxGL.Map, lng: number, lat: number, type: MarkerProps['type'], popup?: Popup) => MapboxGL.Marker) | undefined; //# sourceMappingURL=addMarker.d.ts.map