import type { ExtractPropTypes, PropType, VNode } from 'vue'; import type { VcColorSegments, VcComponentInternalInstance } from 'vue-cesium/es/utils/types'; import { makeRectangle } from 'vue-cesium/es/utils/cesium-helpers'; export declare type VcHeatMapData = { x: number; y: number; value: number; }; export declare const heatmapOverlayProps: { min: { type: NumberConstructor; default: number; }; max: { type: NumberConstructor; default: number; }; data: PropType; options: ObjectConstructor; type: { type: StringConstructor; default: string; }; segments: { type: PropType; default: () => any[]; }; projection: { type: StringConstructor; default: string; }; rectangle: { type: PropType; watcherOptions: { cesiumObjectBuilder: typeof makeRectangle; }; }; show: { type: PropType; default: boolean; }; }; declare const _default: import("vue").DefineComponent<{ min: { type: NumberConstructor; default: number; }; max: { type: NumberConstructor; default: number; }; data: PropType; options: ObjectConstructor; type: { type: StringConstructor; default: string; }; segments: { type: PropType; default: () => any[]; }; projection: { type: StringConstructor; default: string; }; rectangle: { type: PropType; watcherOptions: { cesiumObjectBuilder: typeof makeRectangle; }; }; show: { type: PropType; default: boolean; }; }, () => VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { beforeLoad: (instance: VcComponentInternalInstance) => boolean; ready: (readyObj: import("vue-cesium/es/utils/types").VcReadyObject) => boolean; destroyed: (instance: VcComponentInternalInstance) => boolean; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; options: ObjectConstructor; type: { type: StringConstructor; default: string; }; segments: { type: PropType; default: () => any[]; }; projection: { type: StringConstructor; default: string; }; rectangle: { type: PropType; watcherOptions: { cesiumObjectBuilder: typeof makeRectangle; }; }; show: { type: PropType; default: boolean; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: import("vue-cesium/es/utils/types").VcReadyObject) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; }, { show: boolean; type: string; min: number; max: number; segments: VcColorSegments[]; projection: string; }>; export default _default; export declare type VcOverlayHeatmapProps = ExtractPropTypes;