import React from 'react'; import type { CircularCache, CommonInternalProps } from './types.js'; /** * Renders nested values (eg. objects, arrays, lists, etc.) */ export interface RenderChildNodesProps extends CommonInternalProps { data: unknown; nodeType: string; circularCache: CircularCache; level: number; } interface Props extends CommonInternalProps { data: unknown; nodeType: string; nodeTypeIndicator: string; createItemString: (data: unknown, collectionLimit: number) => string; expandable: boolean; } export default function JSONNestedNode(props: Props): React.JSX.Element; export {};