import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class Sphere 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; _mountedHook(): void; /** * Sets Style * @param style * @returns {Sphere} */ setStyle(style: any): this; } export default Sphere;