using Microsoft.Extensions.DependencyInjection; namespace Toolkit.Foundation; public interface IComponentFactory { IComponentHost? Create(string name, ComponentConfiguration configuration, Action? servicesDelegate = null) where TComponent : IComponent; }