import React, { type ReactNode, type CSSProperties } from "react"; import type { RegisteredLinkProps } from "./link"; export type BreadcrumbProps = { id?: string; className?: string; homeLinkProps?: RegisteredLinkProps; segments: { label: ReactNode; linkProps: RegisteredLinkProps; }[]; currentPageLabel: ReactNode; classes?: Partial>; style?: CSSProperties; }; /** @see */ export declare const Breadcrumb: React.MemoExoticComponent>>; declare const addBreadcrumbTranslations: (params: { lang: string; messages: Partial<{ "show breadcrumb": string; "navigation label": string; home: string; }>; }) => void; export { addBreadcrumbTranslations }; export default Breadcrumb;