import type { AccountInstance } from '@xyo-network/account-model'; import type { NodeInstance } from '@xyo-network/node-model'; import React from 'react'; import type { NodeRelationalGraphProps } from '../../lib/index.ts'; export interface ProvidedNodeRendererProps extends NodeRelationalGraphProps { account?: AccountInstance; layout?: 'dagre' | 'euler' | 'cose-bilkent' | 'cola'; layoutOptions?: object; node?: WeakRef; } export declare const ProvidedNodeRenderer: React.FC; //# sourceMappingURL=ProvidedNodeRenderer.d.ts.map