/** * Syntax highlighting for the terminal renderer. * Supports 12+ languages with One Dark theme colors. */ export declare const SYNTAX: { keyword: string; string: string; number: string; comment: string; function: string; type: string; operator: string; variable: string; punctuation: string; codeFrame: string; codeLang: string; }; export declare function highlightCode(code: string, lang: string): string;