import * as THREE from "three"; /** The name of the CSS class that styles the dimension label. */ export declare const DimensionLabelClassName = "text-white text-sm bg-ifcjs-100 rounded-md px-3 py-1"; /** The name of the CSS class that styles the dimension label. */ export declare const DimensionPreviewClassName = "bg-ifcjs-100 rounded-full w-[8px] h-[8px]"; export interface DimensionData { start: THREE.Vector3; end: THREE.Vector3; lineMaterial: THREE.Material; endpointElement: HTMLElement; }