import { ReactNode } from 'react'; export type BreadcrumbsProps = { pathItems: { text: string; href?: string; }[]; classes?: Record; withBackIcon?: boolean; separator?: ReactNode; }; declare const Breadcrumbs: (props: BreadcrumbsProps) => JSX.Element; export default Breadcrumbs; //# sourceMappingURL=index.d.ts.map