/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType } from 'react'; import type { IconProps } from '../Icon'; export type StandaloneLinkProps = { /** Changes the text colour for readability on a light or dark background. */ readonly color?: 'contrast' | 'inverse'; /** * The icon to show before the link text. * @default ChevronForwardIcon */ readonly icon?: IconProps['svg']; /** * The React component or intrinsic element to use for the link. * Refs are forwarded only to a plain anchor (the default, or `linkComponent="a"`), not to any other `linkComponent`. */ readonly linkComponent?: ElementType; } & Readonly, 'placeholder'>>; /** * A navigation element that is separated from the text around it. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-standalone-link--docs Standalone Link docs at Amsterdam Design System} */ export declare const StandaloneLink: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a light or dark background. */ readonly color?: "contrast" | "inverse"; /** * The icon to show before the link text. * @default ChevronForwardIcon */ readonly icon?: IconProps["svg"]; /** * The React component or intrinsic element to use for the link. * Refs are forwarded only to a plain anchor (the default, or `linkComponent="a"`), not to any other `linkComponent`. */ readonly linkComponent?: ElementType; } & Readonly, "placeholder">> & import("react").RefAttributes>;