import type { HTMLProps, ReactNode } from 'react'; export type TBreadcrumbSeparator = 'slash' | 'chevron'; export type TBreadcrumbProps = { /** Set the Breadcrumb's wrapper classname */ className?: string; /** Set the Breadcrumb's item's classname. The classname will be applied to all items */ itemClassName?: string; /** List of item in Breadcrumb */ items: ReactNode[]; /** Separator between items */ separator?: TBreadcrumbSeparator | ReactNode; /** Set the Breadcrumb's separator's classname. The classname will be applied to all separators */ separatorClassName?: string; } & Omit, 'className'>;