using System;
using System.Collections.Generic;
using Avalonia.Metadata;
namespace Avalonia.Styling
{
///
/// Defines the style host that provides styles global to the application.
///
[NotClientImplementable]
public interface IGlobalStyles : IStyleHost
{
///
/// Raised when styles are added to or a nested styles collection.
///
public event Action>? GlobalStylesAdded;
///
/// Raised when styles are removed from or a nested styles collection.
///
public event Action>? GlobalStylesRemoved;
}
}