/** * Lightweight, dependency-free syntax highlighter for the short JS/TS and shell * snippets shown on the landing page. Single left-to-right pass so a keyword * inside a string or comment is never re-highlighted. Output is HTML-escaped * and safe to inline directly. */ export declare function highlight(code: string): string;