using Avalonia.Media.Imaging; using System.ComponentModel; using System.Threading.Tasks; namespace Avalar.Services { public interface IProcessor : INotifyPropertyChanged { public IBitmap Process(IBitmap input, System.Threading.CancellationToken token); } }