import React from 'react'; import type { INode } from '../index'; import './index.less'; interface IProps { nodes: INode[]; node: INode | undefined; } declare const CustomNodePanel: React.FC; export default CustomNodePanel;