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