using System; using System.Collections.Generic; using System.ComponentModel; namespace Xamarin.Forms.Internals { [EditorBrowsable(EditorBrowsableState.Never)] public interface IResourceDictionary : IEnumerable> { bool TryGetValue(string key, out object value); event EventHandler ValuesChanged; } }