/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType } from 'react'; export type BreadcrumbLinkProps = { /** * 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; /** * One step in the breadcrumb trail, linking to a page in the hierarchy. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-breadcrumb--docs Breadcrumb docs at Amsterdam Design System} */ export declare const BreadcrumbLink: 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 & import("react").RefAttributes>;