import { JSX } from 'react'; import { LinkProps } from './Link.types'; /** * Link * * @see [Storybook](https://skatteetaten.github.io/designsystemet/?path=/docs/komponenter-link--docs) - Teknisk dokumentasjon * @see [Stil og tone](https://www.skatteetaten.no/stilogtone/designsystemet/komponenter/link/) - Brukerveiledning */ export declare const Link: { ({ ref, id, className, lang, "data-testid": dataTestId, isExternal, color, svgPath, href, target, download, ariaDescribedby, ariaCurrent, onClick, children, }: LinkProps): JSX.Element; displayName: string; };