import { BitbybitOcctModule, Handle_TDocStd_Document, TopoDS_Shape } from "../../../bitbybit-dev-occt/bitbybit-dev-occt";
import { OccHelper } from "../../occ-helper";
import * as Inputs from "../../api/inputs";
import * as Models from "../../api/models";
export type { Handle_TDocStd_Document };
/**
 * OCCT Assembly Manager for creating assembly documents with parts, instances, and colors.
 *
 * This class provides methods for:
 * - Building assembly documents from structure definitions
 * - Creating parts and nodes for visual programming
 * - Querying document parts, hierarchy, colors, and transforms
 * - Modifying document labels (color, name)
 * - Exporting to STEP and glTF formats
 * - Loading STEP files into documents
 *
 * All methods use document handles directly (no global document storage).
 * The caller is responsible for managing document lifetime by calling document.delete() when done.
 */
export declare class OCCTAssemblyManager {
    private readonly occ;
    private readonly och;
    constructor(occ: BitbybitOcctModule, och: OccHelper);
    /**
     * Create a part definition for use in assembly structures.
     * This is a helper for visual programming - it simply wraps the inputs into a part object.
     *
     * @param inputs - Part details including id, shape, name, and optional colorRgba
     * @returns Part definition that can be added to an assembly structure
     *
     * @example
     * \`\`\`typescript
     * const box = occt.shapes.solid.createBox({ width: 10, length: 10, height: 10 });
     * const part = occt.assembly.manager.createPart({ id: "box", shape: box, name: "Box", colorRgba: { r: 1, g: 0, b: 0, a: 1 } });
     * \`\`\`
     */
    createPart(inputs: Inputs.OCCT.CreateAssemblyPartDto<TopoDS_Shape>): Models.OCCT.AssemblyPartDef<TopoDS_Shape>;
    /**
     * Create an assembly node definition (a container for other nodes).
     * Assembly nodes group instances and other assemblies together in the hierarchy.
     *
     * @param inputs - Assembly node details including id, name, and optional parent
     * @returns Node definition that can be added to an assembly structure
     */
    createAssemblyNode(inputs: Inputs.OCCT.CreateAssemblyNodeDto): Models.OCCT.AssemblyNodeDef;
    /**
     * Create an instance node definition (a reference to a part with transform).
     * Instance nodes place a part at a specific location with optional translation, rotation, and scale.
     *
     * @param inputs - Instance node details including id, partId, name, and transform
     * @returns Node definition that can be added to an assembly structure
     */
    createInstanceNode(inputs: Inputs.OCCT.CreateInstanceNodeDto): Models.OCCT.AssemblyNodeDef;
    /**
     * Create a part update definition for modifying an existing part in a document.
     * Part updates can change the shape, name, and/or color of an existing part.
     *
     * @param inputs - Update details including label and optional new shape/name/color
     * @returns Part update definition that can be added to an assembly structure's partUpdates array
     *
     * @example
     * ```typescript
     * // Get existing parts from document
     * const parts = occt.assembly.query.getDocumentParts({ document });
     *
     * // Create a new shape to replace the old one
     * const newBox = occt.shapes.solid.createBox({ width: 20, length: 20, height: 20 });
     *
     * // Create an update definition
     * const update = occt.assembly.manager.createPartUpdate({
     *     label: parts[0].label,
     *     shape: newBox,
     *     name: "Bigger Box",
     *     colorRgba: { r: 0, g: 1, b: 0, a: 1 }
     * });
     *
     * // Combine with structure and rebuild
     * const structure = occt.assembly.manager.combineStructure({ parts: [], nodes: [], partUpdates: [update] });
     * occt.assembly.manager.buildAssemblyDocument({ structure, existingDocument: document });
     * ```
     */
    createPartUpdate(inputs: Inputs.OCCT.CreatePartUpdateDto<TopoDS_Shape>): Models.OCCT.AssemblyPartUpdateDef<TopoDS_Shape>;
    /**
     * Combine parts and nodes into a complete assembly structure definition.
     * This is the final step before calling buildAssemblyDocument.
     *
     * @param inputs - Lists of parts and nodes to combine
     * @returns Complete assembly structure ready for building
     */
    combineStructure(inputs: Inputs.OCCT.CombineAssemblyStructureDto<TopoDS_Shape>): Models.OCCT.AssemblyStructureDef<TopoDS_Shape>;
    /**
     * Create an imported part definition that copies a label tree from another document
     * (typically a STEP-loaded document) into the new assembly. Preserves sub-assembly
     * hierarchy, names and colors. The result can be referenced by `partId` from any
     * instance node to place the imported assembly multiple times.
     *
     * @param inputs - Imported part details: id, sourceDocumentIndex, optional sourceLabel/name/colorRgba
     * @returns Imported part definition to add to an assembly structure
     *
     * @example
     * ```typescript
     * const chairDoc = occt.assembly.manager.loadStepToDoc({ stepData });
     * const chair = occt.assembly.manager.createImportedPart({
     *     id: "chair", sourceDocumentIndex: 0, name: "Chair"
     * });
     * const i1 = occt.assembly.manager.createInstanceNode({ id: "c1", partId: "chair", name: "Chair 1", translation: [0,0,0] });
     * const i2 = occt.assembly.manager.createInstanceNode({ id: "c2", partId: "chair", name: "Chair 2", translation: [500,0,0] });
     * const structure = occt.assembly.manager.combineStructure({ parts: [], nodes: [i1, i2], loadedParts: [chair] });
     * const doc = occt.assembly.manager.buildAssemblyDocument({ structure, sourceDocuments: [chairDoc] });
     * ```
     */
    createImportedPart(inputs: Inputs.OCCT.CreateImportedPartDto): Models.OCCT.AssemblyLoadedPartDef;
    /**
     * Build an assembly document from a structure definition.
     * Returns the document handle directly - caller manages lifetime.
     * Call document.delete() when done to free memory.
     *
     * If existingDocument is provided and valid, the document will be cleared and
     * updated instead of creating a new one. This is useful for updating an assembly
     * without allocating a new document each time.
     *
     * When updating an existing document (existingDocument provided):
     * - If `structure.removals` is provided, those labels are removed first
     * - If `structure.partUpdates` is provided, those parts are updated (shape, name, color)
     * - New `parts` and `nodes` are added to the document
     * - If neither `removals` nor `partUpdates` is provided, the document is cleared first (backward compatible)
     * - Use `clearDocument: false` in structure to preserve existing content while adding new parts/nodes
     *
     * @param inputs - Assembly structure definition and optional existing document
     * @returns The document handle (new or updated)
     * @throws Error if assembly building fails
     */
    buildAssemblyDocument(inputs: Inputs.OCCT.BuildAssemblyDocumentDto<TopoDS_Shape, Handle_TDocStd_Document>): Handle_TDocStd_Document;
    /**
     * Load STEP data and return document handle directly.
     * Supports both regular STEP and gzip-compressed STEP-Z.
     * Call document.delete() when done to free memory.
     *
     * @param inputs - STEP file data
     * @returns The document handle
     * @throws Error if STEP loading fails
     */
    loadStepToDoc(inputs: Inputs.OCCT.LoadStepToDocDto): Handle_TDocStd_Document;
    /**
     * Set the color of a label in a document.
     *
     * @param inputs - Document handle, label, and color
     * @returns true on success, false on failure
     */
    setLabelColor(inputs: Inputs.OCCT.SetDocLabelColorDto<Handle_TDocStd_Document>): boolean;
    /**
     * Set or change the name of a label.
     *
     * @param inputs - Document handle, label, and new name
     * @returns true on success, false on failure
     */
    setLabelName(inputs: Inputs.OCCT.SetDocLabelNameDto<Handle_TDocStd_Document>): boolean;
    /**
     * Export an assembly document to STEP format.
     *
     * @param inputs - Export options including document, fileName, author, organization
     * @returns STEP file content as Uint8Array
     */
    exportDocumentToStep(inputs: Inputs.OCCT.ExportDocumentToStepDto<Handle_TDocStd_Document>): Uint8Array;
    /**
     * Export an assembly document to glTF binary (GLB) format.
     *
     * @param inputs - Export options including document and mesh settings
     * @returns GLB content as Uint8Array
     */
    exportDocumentToGltf(inputs: Inputs.OCCT.ExportDocumentToGltfDto<Handle_TDocStd_Document>): Uint8Array;
    /**
     * Export an assembly document to glTF binary (GLB) format with explicit Draco
     * geometry compression settings.
     * @param inputs - Export options including document, mesh settings and Draco knobs
     * @returns GLB content as Uint8Array
     */
    exportDocumentToGltfWithDraco(inputs: Inputs.OCCT.ExportDocumentToGltfWithDracoDto<Handle_TDocStd_Document>): Uint8Array;
}
