import { LabelMgr } from "../LabelMgr"; import { Transform3D } from "../Types"; import { Viewer } from "../Viewer"; import * as BABYLON from '@babylonjs/core'; declare class Panel { LabelMgr: LabelMgr; Viewer: Viewer; constructor(labelMgr: LabelMgr); reCreate(name: string, enable: boolean, transform: Transform3D, color: string, texture: string, text: string, textSize: number, textDirection: 'horizontal' | 'vertical'): Promise; } export { Panel };