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