/** * Breadcrumbs is a navigation component that shows the user's current location * within the site hierarchy and allows quick navigation to parent pages. * * The last item is rendered as the current page (non-link text with `aria-current="page"`) * when it has no `href`. If the last item has an `href`, it is rendered as a link and the * trail has no current-page item. */ export declare const Breadcrumbs: import("react").ForwardRefExoticComponent<{ items: import("./Breadcrumbs.types").BreadcrumbItem[]; wrap?: boolean; customLinkComponent?: import("react").ElementType; } & Omit, HTMLElement>, "ref"> & import("react").RefAttributes>;