import { default as Overlay } from '../Overlay'; import { Position } from '../../core'; declare class LabelPrimitive extends Overlay { private _position; private _text; constructor(position: any, text: any); get type(): string; set position(position: Position); get position(): Position; set text(text: string); get text(): string; _mountedHook(): void; /** * * @param {*} text * @param {*} textStyle */ setLabel(text: any, textStyle: any): this; /** * Sets Style * @param style * @returns {LabelPrimitive} */ setStyle(style: any): this; } export default LabelPrimitive;