import { Observable } from 'rxjs'; export declare class TreeDto { id: string; children?: Observable; parent: TreeDto; path: string; name: string; isLeaf: boolean; constructor(name: string, id: string, isLeaf: boolean, path: string); }