import React from 'react'; import { Sort } from 'colay/type'; import { TreeProps } from './Tree'; export declare type JSONViewerProps = { data: any; sort?: Sort; } & Pick, 'left' | 'renderItem' | 'right' | 'extraData'>; export declare const JSONViewer: React.FC;