import { TreeStore } from '@stoplight/tree-list'; import { JSONSchema4 } from 'json-schema'; import * as React from 'react'; import { GoToRefHandler, RowRenderer } from '../types'; export interface ISchemaTree { treeStore: TreeStore; schema: JSONSchema4; name?: string; hideTopBar?: boolean; expanded?: boolean; maxRows?: number; onGoToRef?: GoToRefHandler; rowRenderer?: RowRenderer; } export declare const SchemaTree: React.FunctionComponent;