import { ComponentProps, FC } from 'react'; import { DeepPartial, IBoolean } from '../../types/types'; export interface BreadcrumbItemTheme { base: string; chevron: string; href: IBoolean; icon: string; } export interface BreadcrumbItemProps extends Omit, "ref"> { href?: string; icon?: FC>; theme?: DeepPartial; } /** * @name Breadcrumb.Item * @description A Breadcrumb.Item component that can be used to display content in a breadcrumb-like style. * @param {React.ReactNode} props.children The content of the breadcrumb item. * @param {string} props.className Custom class name for the breadcrumb item. * @param {string} props.href, If provided, the breadcrumb item will be an anchor link. * @param {FC>} props.icon, If provided, the breadcrumb item will have an icon. * @param {DeepPartial} props.theme, To override default theme for the breadcrumb item. * @returns {React.ReactNode} A Breadcrumb.Item component. * @example * * * Home * * * Authors * * Pol Gubau Amores * * * @author Pol Gubau Amores */ export declare const BreadcrumbItem: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=BreadcrumbItem.d.ts.map