import type { NsGraph } from "@antv/xflow-core";
import "./Relation.less";
interface OwnProps {
    deleteRelation?: Function;
}
declare type Props = OwnProps & NsGraph.IReactEdgeProps;
declare const Relation: (props: Props) => JSX.Element;
export default Relation;
