import { default as React } from 'react'; import { BreakpointSupport } from '../../../helpers'; import { UnknownType } from '../../../types/commonTypes'; import { ButtonContentProps } from '../../buttons/button-content/button-content'; export type InternalLinkProps = { /** * If true, the icon will be placed in a separate column */ iconStandalone?: boolean; }; type AllowedTags = 'a' | React.ComponentType; export type LinkProps = BreakpointSupport & { /** * Whether the link should be underlined by default * @default true */ underline?: boolean; }>; export declare const Link: (props: LinkProps) => React.ReactElement | null; export default Link;