import React from 'react'; import type { CommonInternalProps } from './types.js'; interface Props extends CommonInternalProps { data: unknown; nodeType: string; } export default function JSONIterableNode(props: Props): React.JSX.Element; export {};