import React from "react"; import type { MergeElementProps } from "../../typings"; interface BreadcrumbItemBaseProps { /** * The content of the breadcrumb item. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; } export declare type BreadcrumbItemProps = MergeElementProps<"li", BreadcrumbItemBaseProps>; declare type Component = { (props: BreadcrumbItemProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const BreadcrumbItem: Component; export default BreadcrumbItem;