import { ComponentType, LegacyRef } from 'react' import { design } from '../design/components/edit' interface CreateProps { /** 节点列表 */ nodes: design.Node[] /** ref引用 */ ref?: LegacyRef } /** * 用于渲染节点的组件 */ export const Create: ComponentType