export declare const printInfo: (message: string, silent?: boolean) => void; export declare const printError: (message: string | Error) => void; /** * Do not use `logger` to print webpack compiler error, cause of it may have it's message formatting. * @param errors * @returns */ export declare const printCompilerError: (errors: any) => string[];