import { FC, PropsWithChildren } from "react"; //#region src/components/navigation/breadcrumb/breadcrumb.d.ts declare const Breadcrumb: { readonly List: FC>; readonly Item: FC<{ children?: import("react").ReactNode | undefined; }>; readonly Separator: FC; readonly Link: ({ href, current, children, component }: PropsWithChildren<{ href: T; current?: boolean; component?: FC<{ href: T; className: string; }>; }>) => import("react/jsx-runtime").JSX.Element; }; //#endregion export { Breadcrumb };