import { Position } from '../../core'; import { default as Overlay } from '../Overlay'; declare class FlowLinePrimitive extends Overlay { private _positions; private _width; constructor(positions: any, width?: number); get type(): string; set positions(positions: string | any[]); get positions(): Position[]; /** * * @private */ _setAppearance(): void; _mountedHook(): void; /** * * @param text * @param textStyle * @returns {FlowLinePrimitive} */ setLabel(text: any, textStyle: any): this; /** * Sets Style * @param style * @returns {FlowLinePrimitive} */ setStyle(style?: any): this; } export default FlowLinePrimitive;