import { BoundingSphere, Cartesian3, Color, Matrix4 } from "cesium"; declare class AxisLinePrimitive { id: string; show: boolean; private _positions; private _color; private _arrow; private _width; private _depthFail; private _depthFailColor; private _primitive; private _boundingSphere; private _transformedBoundingSphere; private _modelMatrix; private _update; constructor(options: any); get modelMatrix(): Matrix4; set modelMatrix(value: Matrix4); get positions(): Cartesian3[]; set positions(value: Cartesian3[]); get color(): Color; get width(): number; get boundingVolume(): BoundingSphere; update(frameState: any): void; isDestroyed(): boolean; destroy(): void; } export { AxisLinePrimitive };