/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import { PopupProps } from 'react-map-gl/mapbox'; export interface RowsDataProps { title: string; value: string | number | undefined; } export interface MapPopupProps { popupProps: PopupProps; rows?: Array; } export declare const MapPopup: React.FC; export default MapPopup; //# sourceMappingURL=index.d.ts.map