import React from 'react';
export type CatalogEntityRelationsNodeContentProps = {
    entityType: string;
    label: string;
    isRoot: boolean;
};
export declare function CatalogEntityRelationsNodeContent({ entityType, label, isRoot, }: CatalogEntityRelationsNodeContentProps): React.ReactElement;
