import { AnchorHTMLAttributes, FC, ReactNode } from 'react';
export interface ExternalLinkProps extends AnchorHTMLAttributes<Element> {
    href: string;
    children?: ReactNode;
}
export declare const ExternalLink: FC<ExternalLinkProps>;
