export interface H3FeatureProperties { id: string; h3Index?: string; count: number; } export interface H3HeatmapProps { id?: string; data: GeoJSON.FeatureCollection; colorStops?: [number, string][]; maxCount?: number; } export declare function MapHeatmapH3(props: H3HeatmapProps): import("react/jsx-runtime").JSX.Element;