using System.Collections.Generic; using System.ComponentModel; using System.Threading.Tasks; namespace Xamarin.Forms.Internals { [EditorBrowsable(EditorBrowsableState.Never)] public interface IDeserializer { Task> DeserializePropertiesAsync(); Task SerializePropertiesAsync(IDictionary properties); } }