import { DrawingID } from '@buerli.io/core'; import 'antd/dist/antd.css'; import React from 'react'; /** * Component which provides convenient UI for working with models which is loaded to existing drawing. * It includes ModelTree, Constraints and Solids components and toolbar for creating new features/3dconstraints * Drawing doesn't contain canvas component, so all graphics should be provided as children. * * @param drawingId - id of an existing drawing. * @param Menu - you can pass custom file menu which will be shown at the left top corner. */ export declare const Drawing: React.FC<{ drawingId: DrawingID; Menu?: JSX.Element; children?: React.ReactNode; }>;