import React from "react"; import { type VibeComponentProps } from "../../../../types"; import { type SubIcon } from "@vibe/icon"; export interface BreadcrumbContentProps extends VibeComponentProps { /** * If true, the breadcrumb is clickable. */ isClickable?: boolean; /** * The URL the breadcrumb links to. */ link?: string; /** * Callback fired when the breadcrumb is clicked. */ onClick?: () => void; /** * The text displayed inside the breadcrumb. */ text?: string; /** * The icon displayed next to the text. */ icon?: SubIcon; /** * If true, the breadcrumb represents the current page. */ isCurrent?: boolean; /** * If true, the breadcrumb is disabled. */ disabled?: boolean; /** * If true, the breadcrumb text is shown. */ showText?: boolean; } export declare const BreadcrumbContent: React.ForwardRefExoticComponent>;