Type alias AsyncTreeProps<T>
AsyncTreeProps<T>: TreeViewProps & Partial<{
createChildren: ((parent?: T) => Promise<T[]>);
displayExpr: string;
hasChildrenExpr: string;
keyExpr: string;
parentExpr: string;
rootValue: any;
setExpanded: any;
treeItemProps: TreeItemProps;
}>