import { LlRbTree, Node } from "./tree.js"; /** * Function to construct string from binary tree */ declare function treeToStr(nodeToStrFunc: (node: Node) => string): (tree: LlRbTree) => string; export { treeToStr };