/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType, PropsWithChildren } from 'react'; import type { IconProps } from '../Icon'; export type TabNavigationLinkProps = { /** An icon to display before the link text. */ 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>>; /** * A tab link within a Tab Navigation. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-tab-navigation--docs Tab Navigation docs at Amsterdam Design System} */ export declare const TabNavigationLink: import("react").ForwardRefExoticComponent<{ /** An icon to display before the link text. */ 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>> & import("react").RefAttributes>;