import * as React from 'react'; import UIStore from '../store/UIStore'; interface IProps { uiStore?: UIStore; } declare class OrphanNode extends React.Component { ref: React.RefObject; render(): JSX.Element | null; } export default OrphanNode;