import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface PoiType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    poiStyle?: Partial<PoiEntityAtomType>;
}
export interface PoiEntityAtomType {
    markerNormalUrl: string;
    markerActivateUrl: string;
    markerSize: MinMaxType;
    labelBgImageUrl: string;
    labelBgSize: MinMaxType;
    labelBgOffset: Coord2DType;
    labelContent: Array<string>;
}
