import { Matrix4 } from 'cesium'; import Color from 'cesium/Source/Core/Color'; declare class LandmarkPrimitive { private modelMatrix; private height; private segement; private coneRadius; private coneColor; private circleRadius; private circleColor; private rippleColor; private imgWidth; private imgHeight; private imgUrl; private pickId; private id; private drawCommand; show: boolean; constructor({ modelMatrix, height, segement, coneRadius, circleRadius, coneColor, circleColor, rippleColor, imgWidth, imgHeight, imgUrl, id }?: { modelMatrix?: Matrix4 | undefined; height?: number | undefined; segement?: number | undefined; coneRadius?: number | undefined; circleRadius?: number | undefined; coneColor?: Color | undefined; circleColor?: Color | undefined; rippleColor?: Color | undefined; imgWidth?: number | undefined; imgHeight?: number | undefined; imgUrl?: string | undefined; id?: number | undefined; }); createCommand(context: any): void; destroy(): void; update(frameState: any): void; } export { LandmarkPrimitive };