import { TableRenderSpec } from 'ppef/renderers/types'; /** * Runtime performance table specification. */ export declare const RUNTIME_PERFORMANCE_SPEC: TableRenderSpec; /** * Path lengths table specification. */ export declare const PATH_LENGTHS_SPEC: TableRenderSpec; /** * Method ranking table specification. */ export declare const METHOD_RANKING_SPEC: TableRenderSpec; /** * N-seed comparison table specification. */ export declare const N_SEED_COMPARISON_SPEC: TableRenderSpec; /** * Hub traversal table specification. */ export declare const HUB_TRAVERSAL_SPEC: TableRenderSpec; /** * Hub-avoidance metrics table specification. * * Displays hub-avoidance metrics comparing degree-prioritised vs BFS. * Key insight: path diversity is hub-biased, while these metrics directly * measure the hub-avoidance design goal of degree-prioritised. * * Shows N=3 (multi-seed) variant where DP efficiency difference is most pronounced. */ export declare const HUB_AVOIDANCE_SPEC: TableRenderSpec; /** * N-seed generalization table specification. */ export declare const N_SEED_GENERALIZATION_SPEC: TableRenderSpec; /** * MI ranking quality table specification. */ export declare const MI_RANKING_QUALITY_SPEC: TableRenderSpec; /** * Statistical significance table specification. */ export declare const STATISTICAL_SIGNIFICANCE_SPEC: TableRenderSpec; /** * Ranking comparison table specification. * * Compares Path Salience ranking against baseline methods (random, shortest-path). * Shows mean MI, node coverage, and path diversity across test graphs. */ export declare const RANKING_COMPARISON_SPEC: TableRenderSpec; /** * Ranking statistical significance table specification. * * Wilcoxon signed-rank test results for Path Salience vs baseline methods. */ export declare const RANKING_SIGNIFICANCE_SPEC: TableRenderSpec; /** * All table specifications. */ export declare const TABLE_SPECS: TableRenderSpec[]; /** * Get table specification by ID. * @param id */ export declare const getTableSpec: (id: string) => TableRenderSpec | undefined; //# sourceMappingURL=tables.d.ts.map