/// export interface Crumb { name: string; link: string; target?: string; title?: string; type?: string; arrowRight?: string; } export declare type BreadcrumbsProps = { crumbs?: Crumb[]; alwaysShowRootCrumb?: boolean; pageSize?: number; pagingSize?: number; backgroundColor?: string; fontColor?: string; iconColor?: string; }; declare const Breadcrumbs: (props: BreadcrumbsProps) => JSX.Element; export default Breadcrumbs;