import { Entity } from './Entity.js'; import { BoundingBox } from '../Math/BoundingBox.js'; import { VertexFlags } from './VertexFlags.js'; import { IVertex } from './IVertex.js'; import { XYZ } from '../Math/XYZ.js'; export declare abstract class Vertex extends Entity implements IVertex { bulge: number; curveTangent: number; endWidth: number; get flags(): VertexFlags; set flags(value: VertexFlags); id: number; location: XYZ; get objectName(): string; startWidth: number; protected _flags: VertexFlags; constructor(location?: XYZ); applyTransform(transform: unknown): void; getBoundingBox(): BoundingBox; toString(): string; } //# sourceMappingURL=Vertex.d.ts.map