import { PropsWithChildren, ReactNode } from 'react'; export interface HyperlinkProps extends PropsWithChildren { /** * react node to add as a children */ children?: ReactNode; /** * Defines the url to redirect */ targetUrl: string; /** * identifier for the component */ id?: string; /** * additional classname */ className?: string; /** * Descriptive Text (Aria Label) */ ariaLabel?: string; variant?: string; role?: string; newTab?: boolean; noFollow?: boolean; }