export declare function makeExperimentsTree(files: string[], basePath: string): ExperimentsTree; export declare function arrangeIntoTree(paths: string[][], basePath: string): ExperimentsTree[]; export declare function removeSingleChildFolders(tree: any): ExperimentsTree; export interface ExperimentsTree { path?: string; name?: string; children?: ExperimentsTree[]; url?: string; title?: string; } export declare function bfs(tree: ExperimentsTree): ExperimentsTree[]; //# sourceMappingURL=tree.d.ts.map