/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType, PropsWithChildren } from 'react'; export type CallToActionLinkProps = { /** * 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; } & PropsWithChildren>; /** * A link that stands out visually and encourages the user to take a specific action. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-call-to-action-link--docs CallToActionLink docs at Amsterdam Design System} */ export declare const CallToActionLink: import("react").ForwardRefExoticComponent<{ /** * 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; } & AnchorHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;