import { ReactElement } from 'react'; export interface BreadcrumbItemProps { /** * Whether this BreadcrumbItem is the current one. */ current?: boolean; /** * Specifies the URL of the page the link goes to. */ href: string; /** * Name of BreadcrumbItem. */ text: string; /** * Indicate if BreadcrumbItem is compatible with routing using react-router. A Link component will be rendered instead of an usual HTML a tag. */ withRouter?: boolean; /** * Indicate if BreadcrumbItem is followed by a separator. */ withSeparator?: boolean; } declare const BreadcrumbItem: ({ href, text, withSeparator, current, withRouter, }: BreadcrumbItemProps) => ReactElement; export default BreadcrumbItem;