import type { FlexBoxProps } from '@xylabs/react-flexbox'; import type { Address } from '@xylabs/sdk-js'; import type { NodeInstance } from '@xyo-network/node-model'; import type { CytoscapeOptions } from 'cytoscape'; import type { PropsWithChildren, ReactNode } from 'react'; export interface NodeRelationalGraphProps extends PropsWithChildren { actions?: ReactNode; detail?: ReactNode; layout?: 'dagre' | 'euler' | 'cose-bilkent' | 'cola'; layoutOptions?: object; node?: WeakRef; onHover?: (address?: Address) => void; options?: CytoscapeOptions; showDetails?: boolean; } //# sourceMappingURL=RelationalGraphProps.d.ts.map