import { Colors } from 'tinyrainbow'; interface HighlightOptions { jsx?: boolean; colors?: Colors; } declare function highlight(code: string, options?: HighlightOptions): string; export { highlight };