import React from "react"; export declare type BreadcrumbProps = JSX.IntrinsicElements["nav"] & { /** Event handler triggered when one of the breadcrumb links is clicked */ onNavigate?: React.MouseEventHandler; /** Enables the light version of the Breadcrumb */ light?: boolean; }; /** A breadcrumb is a secondary navigation showing the website hierarchy. */ export declare const Breadcrumb: React.FC;