import { OpenCascadeInstance } from "../../../bitbybit-dev-occt/bitbybit-dev-occt";
import { OccHelper } from "../../occ-helper";
import { OCCTCompound } from "./compound";
import { OCCTVertex } from "./vertex";
import { OCCTEdge } from "./edge";
import { OCCTFace } from "./face";
import { OCCTShape } from "./shape";
import { OCCTShell } from "./shell";
import { OCCTSolid } from "./solid";
import { OCCTWire } from "./wire";
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(occ: OpenCascadeInstance, och: OccHelper);
}
