import React from 'react'; export interface SpawnerProps { children?: JSX.Element | JSX.Element[] | React.ReactNode; } export interface SpawnedChild

{ component: React.ComponentType

; props: P; key: string; } export default function Spawner({ children }: SpawnerProps): JSX.Element;