import { LinkProps } from '@mui/material'; export declare const ThemedExternalLinkIcon: ({ color }: Pick) => import("@emotion/react/jsx-runtime").JSX.Element; export type ExternalLinkProps = LinkProps & { /** * The content of the screen reader text. This only appears for screen readers. */ screenReaderText?: string; /** * Whether to show the external link icon * @default true */ showIcon?: boolean; }; export declare const ExternalLink: ({ children, color, screenReaderText, showIcon, ...linkProps }: ExternalLinkProps) => import("@emotion/react/jsx-runtime").JSX.Element;