import { EntityEidType, BasicInfoAtomType, IPolylineATom } from '../data-type';
export interface PathType extends EntityEidType, Partial<BasicInfoAtomType> {
    pathStyle?: Partial<PathEntityAtomType>;
    polyline?: IPolylineATom;
}
export interface PathEntityAtomType {
    type: string;
    width: number;
    color: string;
    passColor: string;
}
