import { Polyline } from './Polyline.js'; import { CadObject } from '../CadObject.js'; import type { BoundingBox } from '../Math/BoundingBox.js'; import { ObjectType } from '../Types/ObjectType.js'; import { PolylineFlags } from './PolylineFlags.js'; import { VertexFaceRecord } from './VertexFaceRecord.js'; export declare class PolyfaceMesh extends Polyline { faces: VertexFaceRecord[]; get flags(): PolylineFlags; set flags(value: PolylineFlags); get objectName(): string; get objectType(): ObjectType; get subclassMarker(): string; clone(): CadObject; getBoundingBox(): BoundingBox | null; } //# sourceMappingURL=PolyfaceMesh.d.ts.map