import type { ElementType } from 'react'; export type Crumb = { label: string; path: string; isActive: boolean; }; export interface BreadcrumbProps { pathname: string | null; disableHome?: boolean; disableLinks?: boolean; linkComponent: ElementType; }