import React from 'react'; import type { openEventPanelType } from '../../Editor/hooks/useEvent'; import './RelationNode.js'; import './RelationView.less'; interface RelationViewProps { openEventPanel: openEventPanelType; setActiveKey: any; setRightTabActiveKey: (key: any) => void; customEventEdit: any; } declare const RelationView: React.ForwardRefExoticComponent>; export default RelationView;