export interface IBreadcrumbProps { items: IBreadcrumbItem[]; } export interface IBreadcrumbItem { title: string; href?: string; }