I defined props for a component:
interface HeaderProps{
title: string;
image: string;
link: ReactNode;
}
'link' refers to another component, <Link />
So I define it as a ReactNode.
Is there anything more specific I can use instead of ReactNode? Like typeof Link or just Link?