/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType, PropsWithChildren } from 'react'; import type { IconProps } from '../Icon'; export type PageHeaderMenuLinkProps = { /** Whether the link appears in the Page Header on narrow windows. */ readonly fixed?: boolean; /** An icon to display at the end of the label. */ 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>>; export declare const PageHeaderMenuLink: import("react").ForwardRefExoticComponent<{ /** Whether the link appears in the Page Header on narrow windows. */ readonly fixed?: boolean; /** An icon to display at the end of the label. */ 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>;