import { type Tree } from 'text-treeview'; import { type Data } from '../compare-file-sizes'; export type SortBy = 'name' | 'size'; export declare const reduceChain: (trees: Tree[], data: Data, sortBy: SortBy) => Tree[]; export declare const combinePathsIntoTree: (arrayOfPaths: Data[], sortBy: SortBy) => Tree[];