import { FunctionComponent, ReactElement, MouseEventHandler } from 'react'; import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome'; export interface IconLinkProps { clickHandler: MouseEventHandler; href?: string; title: string; alt: string; children: ReactElement; } declare const IconLink: FunctionComponent; export default IconLink;