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