using System.Drawing; namespace Poe2Trade.Screen; public interface IOcrEngine : IDisposable { string Name { get; } OcrResponse Recognize(Bitmap bitmap); }