import type { HeatmapLayerStyleAttributeValue } from './types'; /** * 平铺数据转图层样式数据 * 将表单的平铺数据转为图层样式的数据结构 * */ export declare const heatmapLayerStyleFlatToConfig: (style: Record) => HeatmapLayerStyleAttributeValue; /** * 图层样式数据转平铺数据 * 将图层样式的数据结构转为表单的平铺数据 * */ export declare const heatmapLayerStyleConfigToFlat: (styleConfig: HeatmapLayerStyleAttributeValue) => { colors: any; colorsRange: { colors: any; isReversed: any; }; opacity: number | undefined; radius: any; sizeField: any; intensity: any; zoom: number[]; blend: "min" | "max" | "none" | "normal" | "additive" | "subtractive" | undefined; };