/**
* Rsbuild sends `{ text, html }`, whereas `webpack-dev-server` sends an array.
*/
export type BuildErrors = {
text?: string[];
html?: string;
} | (Error | string)[] | undefined;
declare function logBuildErrors(errors: BuildErrors): void;
export { logBuildErrors };