import { TreeNode } from './treeNode'; import { TreeLeaf } from './treeLeaf'; export declare type TreeElement = TreeNode | TreeLeaf;