import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { NodeInstance } from '@xyo-network/sdk'; import React from 'react'; /** Props for {@link NodeBox}. */ export interface NodeBoxProps extends FlexBoxProps { node?: string | WeakRef; variant?: 'description'; } /** Flex box that renders a node's description for the selected display variant. */ export declare const NodeBox: React.FC; //# sourceMappingURL=Node.d.ts.map