import type { PrintConsoleOptions } from './type.js'; /** * Print an error message to the console * @param title - The title of the error * @param message - The message to print * @param options - The options for the error */ export declare const printError: (title: string, message: readonly string[], options?: PrintConsoleOptions) => void;