import { EntityEidType, BasicInfoAtomType, IPolygon2DAtom } from '../data-type';
export interface RangeEntityAtomType {
    type: string;
    fillAreaType: string;
    height: number;
    strokeWeight: number;
    color: string;
}
export interface RangeType extends EntityEidType, Partial<BasicInfoAtomType> {
    rangeStyle?: Partial<RangeEntityAtomType>;
    polygon2D?: Partial<IPolygon2DAtom>;
}
