export interface HeatMapPoint { lng: number lat: number value?: number } export interface HeatMapLayerOptions { radius?: number height?: number gradient?: Record useGround?: boolean classificationType?: number } export default class HeatMapLayer { constructor(id?: string, options?: HeatMapLayerOptions) readonly type: string | undefined setPoints(points?: HeatMapPoint[]): this clear(): this }