/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type BreadcrumbProps = {
    /** The accessible name for the component. */
    accessibleName?: string;
    /**
     * Connects the component with an internal element that defines its accessible name.
     * Note: must be unique for the page.
     */
    accessibleNameId?: string;
} & PropsWithChildren<HTMLAttributes<HTMLElement>>;
/**
 * @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. */
    accessibleName?: string;
    /**
     * Connects the component with an internal element that defines its accessible name.
     * Note: must be unique for the page.
     */
    accessibleNameId?: string;
} & HTMLAttributes<HTMLElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>> & {
    Link: import("react").ForwardRefExoticComponent<import("./BreadcrumbLink").BreadcrumbLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
};
