/**
* Comparison table renderer.
*
* Layout (chart-recipes.md → Table / comparison matrix):
* - HTML
(no SVG)
* - Sticky header (position: sticky; top: 0)
* - Numeric columns: right-aligned, tabular-nums
* - Min/max highlighting per column when column.highlight === true:
* min cell gets --green-dim background, max gets --accent-dim;
* skipped if the column has fewer than 3 values
* - Verdict cells: pill styling, color from --green / --orange / --red
*/
import type { TableContent } from "./schemas.js";
export interface TableRenderInput {
title: string;
subtitle?: string;
content: TableContent;
}
export declare function renderTableBody({ content }: TableRenderInput): {
chartHtml: string;
chartCss: string;
};
//# sourceMappingURL=table.d.ts.map