import { BundledLanguage } from 'shiki/bundle/web'; /** * Syntax-highlights a snippet for both the light and dark themes. * * Keeping Shiki in this dedicated module ensures the shared `cn` helper — * imported by every component — never drags it into the build graph. See * README.md "Package imports". */ export declare function highlightCode(code: string, language: BundledLanguage, showLineNumbers?: boolean): Promise<[string, string]>;