import { default as Overlay } from '../Overlay'; import { Position } from '../../core'; declare class PolylinePrimitive extends Overlay { private _positions; constructor(positions: any); get type(): string; set positions(positions: string | any[]); get positions(): Position[]; get center(): Position; get distance(): number; _mountedHook(): void; /** * Sets style * @param style * @returns {PolylinePrimitive} */ setStyle(style: any): this; } export default PolylinePrimitive;