import React from 'react'; import { BorderProps, ColorProps, LayoutProps, SpaceProps, TypographyProps } from 'styled-system'; import { ButtonSize, ButtonStyle } from '../lib/theme/variants/button'; /** * styled-component anchor tag using styled-system * * @see See [styled-system docs](https://github.com/jxnblk/styled-system/blob/master/docs/api.md) for usage of those props */ declare const StyledLink: import("styled-components").StyledComponent<"a", any, BorderProps>, import("csstype").Property.Border> & LayoutProps>> & SpaceProps>, string | number | symbol> & TypographyProps>> & ColorProps>, string | number | symbol> & React.HTMLProps & { buttonStyle?: ButtonStyle; buttonSize?: ButtonSize; openInNewTab?: boolean; openInNewTabNoFollow?: boolean; openInNewTabNoFollowRelMe?: boolean; truncateOverflow?: boolean; underlineOnHover?: boolean; hoverColor?: string; }, never>; export default StyledLink;