import * as React from 'react'; import { GoToRefHandler, SchemaTreeListNode } from '../../types'; export interface IProperty { node: SchemaTreeListNode; onGoToRef?: GoToRefHandler; } export declare const Property: React.FunctionComponent;