import React from 'react'; import { type LngLatLike, type PopupOptions } from 'maplibre-gl'; interface Props { children: React.ReactNode; coordinates: LngLatLike; hidden?: boolean; onHide?: () => void; popupOptions?: PopupOptions; trackPointer?: boolean; } declare function MapPopup(props: Props): React.JSX.Element; export default MapPopup;