import React from 'react'; import { FlintBreadcrumbItem as FlintBreadcrumbItemElement } from '@getufy/flint-ui/breadcrumbs/flint-breadcrumb-item'; /** * A breadcrumb item for use inside ``. Renders as a plain text span or an anchor link when `href` is provided. * * @slot (default) - Item content (text or rich content). */ export interface FlintBreadcrumbItemProps extends React.HTMLAttributes { /** When provided, renders the item as an anchor link. */ href?: string | undefined; } export declare const FlintBreadcrumbItem: React.ForwardRefExoticComponent>;