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";
import { OCCTShape } from "./shape";
import { OCCTVertex } from "./vertex";
export declare class OCCTShapes {
    readonly vertex: OCCTVertex;
    readonly edge: OCCTEdge;
    readonly wire: OCCTWire;
    readonly face: OCCTFace;
    readonly shell: OCCTShell;
    readonly solid: OCCTSolid;
    readonly compound: OCCTCompound;
    readonly shape: OCCTShape;
    constructor(occWorkerManager: OCCTWorkerManager);
}
