namespace Toolkit.Avalonia; public interface ITransientNavigationStore where TControl : class { void Clear(); T? Get(TControl control) where T : class; void Remove(TControl control); void Set(TControl control, object parameters); }