import { BasePanel } from "../components/BasePanel"; import { BimViewer } from "../core/BimViewer"; import { Tooltip } from "../components/Tooltip"; export declare enum SectionMode { BOX_SECTION = "BoxSection", AXIS_SECTION = "AxisSection", PLANE_SECTION = "PlaneSection" } export declare class SectionPanel extends BasePanel { readonly bimViewer: BimViewer; private mode; private eventBus; private cfg; tooltip?: Tooltip; constructor(bimViewer: BimViewer, container: HTMLElement | undefined, mode: SectionMode); private updateItems; private init; private initContent; private modeChangeHandler; initTooltip(): void; setMode(mode: SectionMode): void; private destroyTooltip; destroy(): void; }