/// import { TooltipPlacement } from 'antd/lib/tooltip'; import './index.less'; interface RelationPopoverPorps { popoverTitle: string; children: any; DSLCore?: any; placement?: TooltipPlacement; onSelectCallback?: any; data: any; visible: boolean; setVisible: (visible: boolean) => void; loading: boolean; noClickAction?: boolean; } export declare enum ITEM_TYPE { COMP = "comp", EVENT = "event", ACTION = "action", PROPS = "props", ROOT = "root", STYLE = "style", CUSTOM_EVENT = "customEvent" } declare const RelationPopover: (props: RelationPopoverPorps) => JSX.Element; export default RelationPopover;