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 XLine extends Entity { direction: XYZ; firstPoint: XYZ; get objectName(): string; get objectType(): ObjectType; get subclassMarker(): string; applyTransform(transform: unknown): void; getBoundingBox(): BoundingBox; } //# sourceMappingURL=XLine.d.ts.map