///
import PropTypes from 'prop-types';
export declare const Types: {
readonly RELATION: "relation";
readonly DEPENDENCY: "dependency";
readonly DUPLICATE: "duplicate";
readonly BLOCKER: "blocker";
readonly LINK: "link";
};
export declare const RelationIcon: {
({ color, type }: {
color?: string;
type?: "relation" | "dependency" | "duplicate" | "blocker" | "link";
}): JSX.Element;
category: string;
propTypes: {
type: PropTypes.Requireable;
color: PropTypes.Requireable;
};
Types: {
readonly RELATION: "relation";
readonly DEPENDENCY: "dependency";
readonly DUPLICATE: "duplicate";
readonly BLOCKER: "blocker";
readonly LINK: "link";
};
};