import * as React from 'react'; export interface ITreeNode { id: string; type: string; label: string; icon?: React.ReactNode; isCurrent?: boolean; data?: Data; children?: Array>; } export declare type TreeIconGetter = (node: ITreeNode) => React.ReactNode; export declare type TreeClickHandler = (node: ITreeNode) => void;