/**
 * Format error messages for CLI output
 */
export declare class ErrorFormatter {
    /**
     * Format an error message
     * @param message The error message
     * @returns The formatted error message
     */
    format(message: string): string;
}
