import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class Polyline extends Overlay { private _positions; constructor(ppositions: any); get type(): string; set positions(positions: string | any[]); get positions(): Position[]; get center(): Position; get distance(): number; _mountedHook(): void; /** * Sets Text * @param text * @param textStyle * @returns {Polyline} */ setLabel(text: any, textStyle: any): this; /** * Sets style * @param style * @returns {Polyline} */ setStyle(style: any): this; /** * Parse from entity * @param entity * @returns {Polyline} */ static fromEntity(entity: any): any; } export default Polyline;