import { Direction, EntityRelationsGraphProps } from '../EntityRelationsGraph'; /** @public */ export type CatalogGraphPageClassKey = 'content' | 'container' | 'fullHeight' | 'graphWrapper' | 'graph' | 'legend' | 'filters'; export declare const CatalogGraphPage: (props: { initialState?: { selectedRelations?: string[]; selectedKinds?: string[]; rootEntityRefs?: string[]; maxDepth?: number; unidirectional?: boolean; mergeRelations?: boolean; direction?: Direction; showFilters?: boolean; curve?: "curveStepBefore" | "curveMonotoneX"; }; } & Partial) => import("react/jsx-runtime").JSX.Element;