/**
* Convert ANSI-escaped text to HTML with inline styles.
*/
export declare function ansiToHtml(text: string): string;
/**
* Convert array of ANSI-escaped lines to HTML.
* Each line is wrapped in a div element.
*/
export declare function ansiLinesToHtml(lines: string[]): string;