import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type';
export interface HeatMapEntityAtomType {
    type: string;
    brushDiameter: number;
    mappingValueRange: Array<number>;
    gradientSetting: Array<string>;
}
export interface HeatMapType extends EntityEidType, Partial<BasicInfoAtomType> {
    heatMapStyle?: Partial<HeatMapEntityAtomType>;
    points?: IPointValueAtom;
}
