namespace Toolkit.Foundation; public interface IComponent { IComponentBuilder Configure(Action? configurationDelegate = null); IComponentBuilder Configure(Action>? configurationDelegate = null, Action? componentDelegate = null) where TConfiguration : class, new(); }