import type { IssueGroup } from '../../types/analysis.types'; /** * Render the human terminal output shown by `--output table`. * * The original six-column table required roughly 150 columns and squeezed the * actual finding into a narrow cell. A stacked review card is readable in an * 80-column terminal and deliberately mirrors the website's finding preview: * severity, resource, explanation, concrete change, then exact source. */ export declare const renderTerminalFindings: (recommendations: Record, terminalColumns?: number) => string; export declare const printTableToConsole: (recommendations: Record) => void;