import React from 'react'; export type CatalogEntityRelationsLinkedNodeProps = { label: string; entityType: string; className?: string; to: string; }; export declare function CatalogEntityRelationsLinkedNode({ label, entityType, className, to }: CatalogEntityRelationsLinkedNodeProps): React.ReactElement;