import type { ErrorWithPath, PrintConfig } from './Types'; export declare enum AnsiColor { Green = "\u001B[32m", Red = "\u001B[31m", Magenta = "\u001B[35m", Reset = "\u001B[0m" } export declare function printError(error: ErrorWithPath, config: PrintConfig): void;