import { BreadcrumbProps, BreadcrumbItemProps } from '@chakra-ui/react'; /** * Props for the Breadcrumbs component. */ export interface IBreadcrumbs extends BreadcrumbProps { } /** * Combined props for the Breadcrumb component. */ export interface IBreadcrumb extends BreadcrumbItemProps { /** * Label for the breadcrumb. */ label: string; /** * Link for the breadcrumb. */ href?: string; }