/** * 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; height?: number; title?: string; action?: import("react").ReactNode; }) => import("react/jsx-runtime").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[]; selectedKinds?: string[]; rootEntityRefs?: string[]; maxDepth?: number; unidirectional?: boolean; mergeRelations?: boolean; direction?: import("./components").Direction; showFilters?: boolean; curve?: "curveStepBefore" | "curveMonotoneX"; }; } & Partial) => import("react/jsx-runtime").JSX.Element;