Interface for the component registry. The registry is a map where the keys are component IDs and the values are React component types or nested registries.

interface ComponentRegistry {
    [key: string]: ComponentType | ComponentRegistry;
}

Indexable

[key: string]: ComponentType | ComponentRegistry