import { OCCTCompound } from './compound'; import { OCCTEdge } from './edge'; import { OCCTFace } from './face'; import { OCCTSolid } from './solid'; import { OCCTWire } from './wire'; import { OCCTWorkerManager } from '../../../occ-worker/occ-worker-manager'; import { OCCTShell } from './shell'; export declare class OCCTShapes { readonly edge: OCCTEdge; readonly wire: OCCTWire; readonly face: OCCTFace; readonly shell: OCCTShell; readonly solid: OCCTSolid; readonly compound: OCCTCompound; constructor(occWorkerManager: OCCTWorkerManager); }