import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type';
export interface ColumnarHeatMapEntityAtomType {
    type: string;
    brushDiameter: number;
    mappingValueRange: Array<number>;
    columnarWidth: number;
    mappingHeightRange: Array<number>;
    enableGap: boolean;
    gradientSetting: Array<string>;
}
export interface ColumnarHeatMapType extends EntityEidType, Partial<BasicInfoAtomType> {
    columnarHeatMapStyle?: Partial<ColumnarHeatMapEntityAtomType>;
    points?: IPointValueAtom;
}
