export declare class ConsoleErrorHelper {
    writeConsoleErrorToFile(error: any): void;
    updateConsoleErrorTextToJson(errorMessage: string, testTitle: string, testLocation: string): {
        testTitle: string;
        testLocation: string;
        errorText: string;
        errorCount: number;
    };
}
