import { FC } from '@dineug/r-html';
import { Relationship as RelationshipType } from '../../../../../internal-types';
export type RelationshipProps = {
relationship: RelationshipType;
strokeWidth: number;
};
declare const Relationship: FC<RelationshipProps>;
export default Relationship;