import type { HexbinLayerStyleAttributeValue } from './types'; /** * 平铺数据转图层样式数据 * 将表单的平铺数据转为图层样式的数据结构 * */ export declare const hexbinLayerStyleFlatToConfig: (style: Record) => { shape: "hexagonColumn"; color: any; aggregateSize: number; style: { opacity: any; coverage: any; }; minZoom: any; maxZoom: any; blend: any; }; /** * 图层样式数据转平铺数据 * 将图层样式的数据结构转为表单的平铺数据 * */ export declare const hexbinLayerStyleConfigToFlat: (styleConfig: HexbinLayerStyleAttributeValue) => { fillColorField: string | string[] | undefined; fillColorRange: { colors: string | string[] | import("@antv/l7-composite-layers").Callback; isReversed: any; } | undefined; fillColorScale: import("@antv/l7-core").ScaleTypeName | undefined; fillColor: string | import("@antv/l7-composite-layers").Callback | undefined; fillColorOpacity: number | undefined; aggregateSize: number; coverage: any; zoom: number[]; blend: "min" | "max" | "none" | "normal" | "additive" | "subtractive" | undefined; };