import { MouseEventHandler } from 'react'; /** * Props for the ArrowForwardLink and ArrowBackLink components. */ export interface IArrowLink { /** * The label text displayed in the link. */ label: string; /** * The onClick handler function. */ onClick?: MouseEventHandler; }