import { AuditResult } from './common';
/**
 * Renders the provided audit results to well-formatted and valid HTML.
 *
 * Do note that the rendered result is not an HTML document, it's rather
 * just a component with results.
 */
export declare function renderAuditResultsToHTML(results: AuditResult[]): Promise<string>;
