export type Maybe = T | null | undefined; export type ReactComponentLike = | string | ((props: any, context?: any) => any) | (new (props: any, context?: any) => any); export type ReactElementLike = { type: ReactComponentLike; props: any; key: string | number | null; }; export type ReactNodeLike = | {} | ReactElementLike | Array | string | number | boolean | null | undefined;