import React from "react"; import { PopupOptions } from "react-map-gl/maplibre"; type Props = React.ComponentPropsWithoutRef & { autoOffset?: number; popupContents?: React.ReactNode; popupProps?: PopupOptions; position: [number, number]; tooltipContents?: React.ReactNode; }; /** * A MapLibre marker with a connected popup or tooltip */ declare const MarkerWithPopup: ({ autoOffset, children, popupContents, popupProps, position, tooltipContents }: Props) => JSX.Element; export default MarkerWithPopup; //# sourceMappingURL=MarkerWithPopup.d.ts.map