/** * 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 { FeatureHoverProps, MapProps } from "../Map"; import { MapPopupProps } from "../MapPopup"; import type GeoJSON from 'geojson'; export interface HeatMapProps { color?: string; data?: GeoJSON.FeatureCollection; mapboxAccessToken: string; mapPopupProps?: Partial; mapProps?: Omit, 'mapboxAccessToken'>; onHoverInfo?: FeatureHoverProps; setOnHoverInfo?: (newHoverInfo: FeatureHoverProps | undefined) => void; sourceId?: string; tooltipElement?: React.ReactElement; } /** * HeatMap component which under the hood uses mapbox and react-map-gl. For this to work it's necessary * to add the link bellow in the head of your page: * For more information: https://visgl.github.io/react-map-gl/docs/get-started/get-started#styling */ export declare const HeatMap: React.FC; export default HeatMap; //# sourceMappingURL=index.d.ts.map