import type { Hotspot } from './hotspots.js'; export type Folder = { path: string; name: string; children: TreeData[]; }; export type File = { path: string; name: string; complexity: number; revisions: number; }; export type TreeData = Folder | File; export declare function treeData(hotspots: Hotspot[]): TreeData; //# sourceMappingURL=tree-data.d.ts.map