import { Props as LinkBasicProps } from "../link/link"; import React from 'react'; interface Props { href?: string; nextLink?: boolean; onClick?: (event: React.MouseEvent) => void; className?: string; } declare type NativeAttrs = Omit, keyof Props>; declare type NativeLinkAttrs = Omit; export declare type BreadcrumbsItemProps = Props & NativeLinkAttrs; declare const BreadcrumbsItem: React.ForwardRefExoticComponent>; export default BreadcrumbsItem;