/// /** * The Breadcrumbs component is used to show detail where the user is located in the application. * *```tsx * import * as React from "react" * import * as System from "@harborschool/lighthouse" * import { useTheme } from "@harborschool/lighthouse" * * export default () => { * const theme = useTheme() * return ( * * * Item0 * * * Item1 * * * ) * } * ``` * @param children - React.ReactNode * @param overrides - \{ Wrap?: StyletronReact.StyleObject; Item?: StyletronReact.StyleObject } */ export declare const Breadcrumbs: React.FC; export * from "./types"; import { BreadcrumbsPropsT } from "./types";