import { ReactNode } from 'react'; import * as React from 'react'; /** * Represents a single breadcrumb item used to build breadcrumb trails. * * @property {string} path - The URL or path to navigate to. * @property {ReactNode} name - Display label for the breadcrumb item. * @property {boolean} [isActive] - Marks the current page item. */ export interface BreadcrumbInterface { path: string; name: ReactNode; isActive?: boolean; } /** * Root breadcrumb navigation component. Provides aria-label and forwards ref to a