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