import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class Cylinder extends Overlay { private _position; private _length; private _topRadius; private _bottomRadius; constructor(position: any, length: any, topRadius: any, bottomRadius: any); get type(): string; set position(position: Position); get position(): Position; set length(length: number); get length(): number; set topRadius(topRadius: number); get topRadius(): number; set bottomRadius(bottomRadius: number); get bottomRadius(): number; _mountedHook(): void; /** * * @param {*} text * @param {*} textStyle */ setLabel(text: any, textStyle: any): this; /** * Sets Style * @param style * @returns {Cylinder} */ setStyle(style: any): this; } export default Cylinder;