interface ColoredOptions {
    jsx?: boolean;
}
declare function highlight(code: string, options?: ColoredOptions): string;

export { highlight };
