import React from "react";
type RelationLineProps = {
    x1: number;
    x2: number;
    y1: number;
    y2: number;
};
export declare const RelationLine: React.FC<RelationLineProps>;
export {};
