import { MinMaxType, EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type';
export interface RoadHeatMapType extends EntityEidType, Partial<BasicInfoAtomType> {
    roadHeatMapStyle?: Partial<RoadHeatMapEntityAtomType>;
    points?: IPointValueAtom;
}
export interface RoadHeatMapEntityAtomType {
    type: string;
    width: number;
    mappingValueRange: MinMaxType;
    gradientSetting: Array<string>;
    filter: Array<string>;
}
