import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class ElecEllipsoidPrimitive extends Overlay { private _position; private _radius; constructor(position: any, radius: any); get type(): string; set position(position: Position); get position(): Position; set radius(radius: any); get radius(): any; /** * * @private */ _setAppearance(): void; _mountedHook(): void; /** * * @param text * @param textStyle * @returns {ElecEllipsoidPrimitive} */ setLabel(text: any, textStyle: any): this; /** * Sets Style * @param style * @returns {ElecEllipsoidPrimitive} */ setStyle(style?: {}): this; } export default ElecEllipsoidPrimitive;