import type { ComponentProps, FC } from "react"; import type { FlowbiteBoolean, ThemingProps } from "../../types"; export interface BreadcrumbItemTheme { base: string; chevron: string; href: FlowbiteBoolean; icon: string; } export interface BreadcrumbItemProps extends Omit, "ref">, ThemingProps { href?: string; icon?: FC>; } export declare const BreadcrumbItem: import("react").ForwardRefExoticComponent>;