import { OnChanges, SimpleChanges } from '@angular/core'; import { EntityOnMapComponent } from '../../services/entity-on-map/entity-on-map.component'; import { ArcDrawerService } from '../../services/drawers/arc-drawer/arc-drawer.service'; import { MapLayersService } from '../../services/map-layers/map-layers.service'; /** * This is an implementation of an arc. * The element must be a child of ac-map element. * An arc is not natively implemented in cesium. * * __Usage :__ * ``` * * * ``` */ export declare class AcArcComponent extends EntityOnMapComponent implements OnChanges { geometryProps: any; instanceProps: any; primitiveProps: any; constructor(arcDrawer: ArcDrawerService, mapLayers: MapLayersService); updateOnMap(): void; drawOnMap(): any; ngOnChanges(changes: SimpleChanges): void; }