import { Cartesian3, PrimitiveCollection } from "cesium"; declare class APolyline { private id; private _positions; private color; private collection; private _show; _instance: any; constructor({ id, show }?: { id?: number | undefined; show?: boolean | undefined; }); get show(): boolean; set show(value: boolean); setCollection(collection: PrimitiveCollection): void; get positions(): Cartesian3[]; set positions(value: Cartesian3[]); load(): void; } export { APolyline };