React.ReactElement
code:ts
interface ReactElement<
P = any,
T extends string
| JSXElementConstructor<any> = string
| JSXElementConstructor<any>
{
type: T;
props: P;
key: Key | null;
}
https://github.com/microsoft/TypeScript/blob/aa44cd80049a8dec1fbd7afe8a92f617a3b3537e/tests/lib/react18/react18.d.ts#L141-