import { TypographyProps } from "@material-ui/core/Typography"; import React from "react"; interface ExternalLinkProps extends React.HTMLProps { typographyProps?: TypographyProps; } declare const ExternalLink: React.FC; export default ExternalLink;