import React from 'react'; import { ColorProps, TypographyProps } from 'styled-system'; import { TextDecorationProps } from '../lib/styled-system-custom-properties'; /** * A button element but with the styles of a anchor element (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a). */ declare const StyledLinkButton: import("styled-components").StyledComponent<"button", any, ColorProps>, string | number | symbol> & TypographyProps>> & TextDecorationProps & React.ButtonHTMLAttributes & { hoverColor?: string; variant?: 'danger'; underlineOnHover?: boolean; }, never>; export default StyledLinkButton;