import { IComponentProps } from "./common"; import { Tree as NativeTree } from "ave-ui"; export interface ITreeComponentProps extends IComponentProps { nodes: ITreeNode[]; onSelect?: (sender: NativeTree, selected: ITreeNode) => void; } export interface ITreeNode { text: string; children: ITreeNode[]; } export declare const Tree: import("./common").ReactAveTag;