using Avalonia.Metadata; namespace Avalonia { /// /// Untyped interface to /// [NotClientImplementable] public interface IStyledPropertyMetadata { /// /// Gets the default value for the property. /// object? DefaultValue { get; } } }