import { PolygonHierarchy } from '@cesium/engine'; import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class GatheringPlace extends Overlay { private _positions; private t; constructor(positions: string | Position[]); get type(): string; set positions(positions: string | any[]); get positions(): Position[]; _getHierarchy(): PolygonHierarchy; _mountedHook(): void; /** * * @param text * @param textStyle * @returns {GatheringPlace} */ setLabel(text: any, textStyle: any): this; /** * Sets Style * @param style * @returns {GatheringPlace} */ setStyle(style: any): this; } export default GatheringPlace;