import type { Diagnostic } from '../build/diagnostic';
/** Prints the given diagnostics in the console */
export declare function logDiagnostics(diagnostics: Diagnostic[]): void;
/** Creates a nicely formatted diagnostic header */
export declare const prettyConsoleError: (diagnostic: Diagnostic) => string;
/**
 * Returns a HTML Markup from given prettyError.
 * If conversion failed returns false.
 */
export declare const prettyHtmlError: (diagnostic: Diagnostic) => string;
