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 Point extends Entity { location: XYZ; normal: XYZ; get objectName(): string; get objectType(): ObjectType; rotation: number; get subclassMarker(): string; thickness: number; constructor(location?: XYZ); applyTransform(transform: unknown): void; getBoundingBox(): BoundingBox; } //# sourceMappingURL=Point.d.ts.map