/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type BreadcrumbProps = { /** The accessible name for the component. */ readonly accessibleName?: string; /** * Connects the component with an internal element that defines its accessible name. * Note: must be unique for the page. */ readonly accessibleNameId?: string; } & Readonly>>; /** * Shows the location of the page within the hierarchy of a website and allows navigating between levels. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-breadcrumb--docs Breadcrumb docs at Amsterdam Design System} */ export declare const Breadcrumb: import("react").ForwardRefExoticComponent<{ /** The accessible name for the component. */ readonly accessibleName?: string; /** * Connects the component with an internal element that defines its accessible name. * Note: must be unique for the page. */ readonly accessibleNameId?: string; } & Readonly>> & import("react").RefAttributes> & { Link: import("react").ForwardRefExoticComponent<{ readonly linkComponent?: import("react").ElementType; } & import("react").AnchorHTMLAttributes & import("react").RefAttributes>; };