namespace Avalonia.VisualTree
{
///
/// Interface for controls that are at the root of a hosted visual tree, such as popups.
///
public interface IHostedVisualTreeRoot
{
///
/// Gets the visual tree host.
///
///
/// The visual tree host.
///
IVisual? Host { get; }
}
}