import type { SceneControl, Line as TLine } from '@anov/3d-core'; import ObjectLayer from '../Base/ObjectLayer'; import type { options } from './types'; import type { ILine } from './interface'; export declare class Line extends ObjectLayer implements ILine { private line; constructor(options: options, sceneControl: SceneControl); createLine(options: options): TLine; /** 更新线条 */ updateLine(options: options): void; /** 销毁释放资源 */ destroy(): void; }