import type { TokenType } from './types.js'; export type HighlightCategory = 'keyword' | 'operator' | 'string' | 'number' | 'bool' | 'comment' | 'variableName' | 'functionName' | 'punctuation' | 'bracket' | 'meta'; export declare const TOKEN_HIGHLIGHT_MAP: ReadonlyMap;