import React from "react"; export declare type BreadcrumbItemProps = JSX.IntrinsicElements["li"] & { /** * The link to where it navigates to. This is used to enable openning the link in new tab. * Additionally, you can access it in the event passed with the onNavigate callback */ href?: string; /** Event handler triggered when the link is clicked */ onNavigate?: React.MouseEventHandler; }; export declare const BreadcrumbItem: React.FC;