import { ReactNode } from 'react'; export type BreadcrumbsProps = { items: { title: ReactNode; to?: string; className?: string; testId?: string; }[]; onItemClick?: (to?: string) => void; activeIndex?: number; /** * Renders a back button before items. Clicking on it will call `onItemClick` with the arguments for the first item */ showBackIcon?: boolean; className?: string; testId?: string; }; export declare const Breadcrumbs: ({ showBackIcon, testId, items, className, onItemClick, activeIndex, }: BreadcrumbsProps) => JSX.Element; //# sourceMappingURL=Breadcrumbs.d.ts.map