import { ContextManager } from '@zcomponent/core'; import * as THREE from 'three'; import { Line, LineConstructorProps } from './Line'; /** * * A series of lines drawn between pairs of vertices. * This is nearly the same as `Line`; the only difference is that it is rendered using `gl.LINES` instead of `gl.LINE_STRIP`. * * Root element: [THREE.LineSegments](https://threejs.org/docs/index.html#api/en/objects/LineSegments) * * @zcomponent * @zgroup Lines * @zicon deployed_code * @ztag three/Object3D/Line/LineSegments * @zparents three/Object3D/Group/** */ export declare class LineSegments extends Line { root: THREE.LineSegments; /** * Creates a new line segments. * @param contextManager - The context manager. * @param props - Constructor properties. */ constructor(contextManager: ContextManager, props: LineConstructorProps); }