///
/**
* A card that displays the directly related entities to the current entity.
*
* @public
*/
export declare const EntityCatalogGraphCard: (props: Partial & {
variant?: import("@backstage/core-components").InfoCardVariants | undefined;
height?: number | undefined;
title?: string | undefined;
}) => import("react").JSX.Element;
/**
* A standalone page that can be added to your application providing a viewer
* for your entities and their relations.
*
* @public
*/
export declare const CatalogGraphPage: (props: {
initialState?: {
selectedRelations?: string[] | undefined;
selectedKinds?: string[] | undefined;
rootEntityRefs?: string[] | undefined;
maxDepth?: number | undefined;
unidirectional?: boolean | undefined;
mergeRelations?: boolean | undefined;
direction?: import("./components").Direction | undefined;
showFilters?: boolean | undefined;
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
} | undefined;
} & Partial) => import("react").JSX.Element;