import type { FC } from 'react'; import type { Token } from '../adapters/types'; export type CodeTokenProps = { token: Token; colorClass?: string; /** Color class from a range highlight — takes highest priority */ rangeColorClass?: string; }; /** Renders a single syntax-highlighted token */ export declare const CodeToken: FC;