import { FC, HTMLAttributes, RefObject } from 'react'; export type ExternalLinkProps = Omit, 'href'> & { href: string; ref?: RefObject; }; export declare const ExternalLink: FC;