/// import type { LinkProps } from "./Link.types"; /** * * This component is an accessible, styled link. * It takes a url and supplies the appropriate tag (anchor vs react router) based * on whether the link provided is an external link or not. * * @param props * @constructor */ declare function Link(props: LinkProps): JSX.Element; declare namespace Link { var displayName: string; var defaultProps: { target: string; kind: string; }; } export { Link };