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