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