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