/** * List view for saved plan comparisons. * * Renders a summary table of all `--list` results. * * @module */ import type { PlanComparison } from '../types.js'; /** * Render the list of saved plan comparisons. * * @param comparisons - Array of comparisons (sorted newest first) */ export declare function renderList(comparisons: PlanComparison[]): void; //# sourceMappingURL=list.d.ts.map