1 | import React from 'react';
|
2 | import type { StylingValue, Theme } from 'react-base16-styling';
|
3 | import type { CommonExternalProps } from './types.js';
|
4 | interface Props extends Partial<CommonExternalProps> {
|
5 | data: unknown;
|
6 | theme?: Theme;
|
7 | invertTheme?: boolean;
|
8 | }
|
9 | export declare function JSONTree({ data: value, theme, invertTheme: shouldInvertTheme, keyPath, labelRenderer, valueRenderer, shouldExpandNodeInitially, hideRoot, getItemString, postprocessValue, isCustomNode, collectionLimit, sortObjectKeys, }: Props): React.JSX.Element;
|
10 | export type { Key, KeyPath, GetItemString, LabelRenderer, ValueRenderer, ShouldExpandNodeInitially, PostprocessValue, IsCustomNode, SortObjectKeys, Styling, CommonExternalProps, } from './types.js';
|
11 | export type { StylingValue };
|