export type BreadcrumbLinkType = 'a' | 'router-link' | 'button'; export type BreadcrumbItem = { component?: string; disabled?: boolean; href?: string; id: string | number; label?: string; linkType?: BreadcrumbLinkType; slug?: string; target?: string; to?: string; value?: string; onClick?: (event: MouseEvent | KeyboardEvent) => void; };