import { default as React } from 'react'; import { IconComponentType } from '../../utils/types'; export type BreadcrumbItemProps = { /** * Pass href to an item */ href?: string; /** * Pass an onClick handler to an item */ onClick?: (event: React.MouseEvent) => void; /** * Pass icon to an item */ icon?: IconComponentType; /** * Pass text to an item */ children: React.ReactNode; /** * Specify truncation width of the items. Sets max-width for all items but the last. */ truncationWidth?: string; /** * Specify explicitly if the item is the last one */ isCurrent?: boolean; /** * Pass a custom render element for the link */ RenderLink?: React.ComponentType>; }; export declare function BreadcrumbItem({ href, onClick, icon: Icon, children, truncationWidth, isCurrent, RenderLink, }: BreadcrumbItemProps): import("react/jsx-runtime").JSX.Element;