import React from "react"; import { type VibeComponentProps } from "../../../types"; import { type SubIcon } from "@vibe/icon"; export interface BreadcrumbItemProps extends VibeComponentProps { /** * The display text of the breadcrumb item. */ text?: string; /** * If true, the item is disabled. */ disabled?: boolean; /** * If true, the item is clickable. */ isClickable?: boolean; /** * The URL the item links to if navigation is handled via a link. */ link?: string; /** * Callback fired when the item is clicked. */ onClick?: () => void; /** * If true, applies styling for the current page. */ isCurrent?: boolean; /** * The icon displayed next to the text. */ icon?: SubIcon; /** * If true, the breadcrumb text is shown. */ showText?: boolean; } declare const BreadcrumbItem: React.FC; export default BreadcrumbItem;