import type { GenericGeometry } from './geojson'; import type { LngLat } from './lng-lat'; interface HotspotFeature { type: 'Feature'; id: string; geometry?: GenericGeometry; properties: Record; } interface HotspotObject { type: 'hotspot'; feature: HotspotFeature; } interface RawHotspotObject { type: 'raw-hotspot'; feature: HotspotFeature; } export { HotspotFeature, HotspotObject, RawHotspotObject };