/** * View — "Functions" (ranked-distribution affordance). * * Replaces the four single-metric ranked tabs (big / hot / wide / untested) * with ONE sortable, paginated, filter-aware function table whose columns are * the union those tabs covered: lines, callers (hot), params/width (wide), and * a test-reachable flag (untested). The default sort is by lines descending * (the most-requested triage axis); the shared `makeSortable` lets the reader * re-sort by any column, so the sub-threshold tail (e.g. a 140-line function * under a 150 gate) stays triageable once the single-metric tabs are gone. * * Built on `defineRankedView` (the same skeleton the removed tabs used), so it * reuses `renderFunctionRows` / `makeSortable` / `paginateTable` and the * row-click → Function Card delegation with no new plumbing. * * Part of the Plan B Code Paths restructure; concatenated only in the * restructured (flag = true) branch of `dashboardCodePathsJs`. */ export declare function dashboardViewDistributionJs(): string; //# sourceMappingURL=view-distribution.d.ts.map