import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class Curve extends Overlay { private _positions; private _t; 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 {Curve} */ setLabel(text: any, textStyle: any): this; /** * Sets style * @param style * @returns {Curve} */ setStyle(style: any): this; /** * Parse from entity * @param entity * @returns {Curve} */ static fromEntity(entity: any): any; } export default Curve;