import type { NsGraph } from '@antv/xflow';
import './Entity.less';
interface OwnProps {
    deleteNode: Function;
}
declare type Props = OwnProps & NsGraph.IReactNodeProps;
declare const Entity: (props: Props) => JSX.Element;
export default Entity;
