import { FC, Ref } from '@dineug/r-html';
import { DrawRelationship as DrawRelationshipType } from '../../../../engine/modules/editor/state';
export type DrawRelationshipProps = {
    root: Ref<HTMLDivElement>;
    draw: DrawRelationshipType;
};
declare const DrawRelationship: FC<DrawRelationshipProps>;
export default DrawRelationship;
