/** * Terminal formatting helpers for check command output. */ import type { InterviewResult, ToolProfile } from '../../interview/types.js'; import type { ToolProgressSummary } from '../../interview/interviewer.js'; export interface CheckSummary { fullyTested: number; skipped: string[]; mocked: string[]; issueTools: string[]; lines: string[]; nextSteps: string[]; } export declare function formatToolResultLine(summary: ToolProgressSummary): string; export declare function buildCheckSummary(result: InterviewResult): CheckSummary; export declare function formatConfidenceLevel(level?: 'high' | 'medium' | 'low'): string; export declare function colorizeConfidence(label: string, _level?: 'high' | 'medium' | 'low'): string; export declare function profileHasIssues(profile: ToolProfile): boolean; //# sourceMappingURL=terminal-reporter.d.ts.map