import { DrawingID } from '@buerli.io/core'; import React from 'react'; /** * Component which shows structure of model. * In part mode a list of part features is shown. In assembly mode a tree of assembly nodes is shown. * It checks root and currentProduct to understand which mode is currently enabled. Check useEditMode hook for more details. * * @param drawingId * @returns */ export declare const ModelTree: React.FC<{ drawingId: DrawingID; }>;