/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { AnchorHTMLAttributes, ComponentType, PropsWithChildren } from 'react';
import type { IconProps } from '../Icon';
export type TabNavigationLinkProps = {
    /** An icon to display before the link text. */
    icon?: IconProps['svg'];
    /**
     * The React component to use for the link.
     * Refs are not forwarded to custom link components.
     */
    linkComponent?: ComponentType<AnchorHTMLAttributes<HTMLAnchorElement>>;
} & PropsWithChildren<AnchorHTMLAttributes<HTMLAnchorElement>>;
export declare const TabNavigationLink: import("react").ForwardRefExoticComponent<{
    /** An icon to display before the link text. */
    icon?: IconProps["svg"];
    /**
     * The React component to use for the link.
     * Refs are not forwarded to custom link components.
     */
    linkComponent?: ComponentType<AnchorHTMLAttributes<HTMLAnchorElement>>;
} & AnchorHTMLAttributes<HTMLAnchorElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLAnchorElement>>;
