import * as React from 'react'; export declare const StyledLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLAnchorElement>, { $variant: "default" | "inverted" | "styleless"; $margin?: string; }>> & string; export interface HyperlinkProps extends React.AnchorHTMLAttributes { /** Id of the link component. */ id?: string; /** Style variant of the link */ variant: 'default' | 'inverted' | 'styleless'; /** Href of the link component */ href: string; /** If set then user can not interact with the link. */ disabled?: boolean; /** Custom value of margin style. */ margin?: string; /** Content of the Hyperlink */ children?: any; /** Custom className to set to the link. */ className?: string; /** Ref for Hyperlink. */ ref?: React.Ref; /** If this flag is set, then Hyperlink will behave like anchor tag, otherwise it will use 'navigate' method of NavigationProvider */ external?: boolean; } declare const HyperLink: React.FunctionComponent; export default HyperLink;