import { Entity } from './Entity.js'; import { BoundingBox } from '../Math/BoundingBox.js'; import { ObjectType } from '../Types/ObjectType.js'; import { XYZ } from '../Math/XYZ.js'; export declare class Line extends Entity { endPoint: XYZ; normal: XYZ; get objectName(): string; get objectType(): ObjectType; startPoint: XYZ; get subclassMarker(): string; thickness: number; constructor(start?: XYZ, end?: XYZ); applyTransform(transform: unknown): void; getBoundingBox(): BoundingBox; } //# sourceMappingURL=Line.d.ts.map