import { TreeService } from './tree.service'; import { SearchableNode, TreeTableNode, Node } from '../../models/node.model'; import * as i0 from "@angular/core"; 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; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }