import { ContextManager } from '@zcomponent/core'; import * as THREE from 'three'; import { Line, LineConstructorProps } from './Line'; /** * A continuous line that connects back to the start. * * This is nearly the same as `Line`; the only difference is that it is rendered using `gl.LINE_LOOP` instead of `gl.LINE_STRIP`, * which draws a straight line to the next vertex, and connects the last vertex back to the first. * * Root element: [THREE.LineLoop](https://threejs.org/docs/index.html#api/en/objects/LineLoop) * @zcomponent * @zgroup Lines * @zicon deployed_code * @ztag three/Object3D/Line/LineLoop * @zparents three/Object3D/Group/** */ export declare class LineLoop extends Line { root: THREE.LineLoop; constructor(contextManager: ContextManager, props: LineConstructorProps); }