import type { DoctorReport } from "../codex/types.js"; import type { RuleMatch } from "../engine/matcher.js"; import type { Platform } from "../knowledge/schema.js"; export interface TerminalRenderOptions { report?: DoctorReport; matches: RuleMatch[]; platform: Platform; locale: string; } export declare function sanitizeTerminalText(value: string): string; export declare function renderTerminal(options: TerminalRenderOptions): string; //# sourceMappingURL=terminal.d.ts.map