import { TreeService } from './tree.service'; import { SearchableNode, TreeTableNode } from '../models/node.model'; import { Node } from "@3kles/kles-material-table/lib/models/node.model"; export declare class ConverterService { private treeService; constructor(treeService: TreeService); /** * Clone a Node object and convert it to a SearchableNode * @param tree the node to be converted */ toSearchableTree(tree: Node): SearchableNode; /** * Clone a SearchableNode object and convert it to a TreeTableNode * @param tree the node to be converted */ toTreeTableTree(tree: SearchableNode): TreeTableNode; }