import type { HighlighterInitializationOptions } from './highlighter-options.ts'; import { Tokenizer } from './create-tokenizer.ts'; /** Converts a string of code to an array of highlighted tokens. */ export declare function createHighlighter(options: HighlighterInitializationOptions): Promise>; export type Highlighter = Awaited>;