import { IRowRendererOptions } from '@stoplight/tree-list'; import * as React from 'react'; import { GoToRefHandler, SchemaTreeListNode } from '../types'; export interface ISchemaRow { className?: string; node: SchemaTreeListNode; rowOptions: IRowRendererOptions; onGoToRef?: GoToRefHandler; } export declare const SchemaPropertyRow: typeof SchemaRow; export declare const SchemaErrorRow: React.FunctionComponent<{ message: string; }>; export declare const SchemaRow: React.FunctionComponent;