/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type BreadcrumbProps = PropsWithChildren<HTMLAttributes<HTMLElement>>;
export declare const Breadcrumb: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>> & {
    Link: import("react").ForwardRefExoticComponent<import("./BreadcrumbLink").BreadcrumbLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
};
