1 | import React from 'react';
|
2 | import type { CircularCache, CommonInternalProps } from './types.js';
|
3 |
|
4 |
|
5 |
|
6 | export interface RenderChildNodesProps extends CommonInternalProps {
|
7 | data: unknown;
|
8 | nodeType: string;
|
9 | circularCache: CircularCache;
|
10 | level: number;
|
11 | }
|
12 | interface Props extends CommonInternalProps {
|
13 | data: unknown;
|
14 | nodeType: string;
|
15 | nodeTypeIndicator: string;
|
16 | createItemString: (data: unknown, collectionLimit: number) => string;
|
17 | expandable: boolean;
|
18 | }
|
19 | export default function JSONNestedNode(props: Props): React.JSX.Element;
|
20 | export {};
|