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