import * as React from "react"; import * as StyledSystem from "styled-system"; import * as Emotion from "@emotion/styled"; import { PseudoBoxProps } from "../PseudoBox"; export interface ILink { /** * If `true`, the link will open in new tab */ isExternal?: boolean; /** * If `true`, the link will be disabled and not tabbable */ isDisabled?: boolean; /** * Action to perform when clicked */ onClick?: React.MouseEventHandler; } export type LinkProps = ILink & PseudoBoxProps & React.HTMLProps; /** * Links are accesible elements used primarily for navigation. This component is * styled to resemble a hyperlink and semantically renders an ``. */ declare const Link: React.FC; export default Link;