import type { ComponentProps, FC } from 'react';
import React from 'react';
import type { DeepPartial } from '../../types';
import type { FlowbiteBoolean } from '../Flowbite';
export interface FlowbiteBreadcrumbItemTheme {
    base: string;
    chevron: string;
    href: FlowbiteBoolean;
    icon: string;
}
export interface BreadcrumbItemProps extends Omit<ComponentProps<'li'>, 'ref'> {
    href?: string;
    icon?: FC<ComponentProps<'svg'>>;
    theme?: DeepPartial<FlowbiteBreadcrumbItemTheme>;
}
export declare const BreadcrumbItem: React.ForwardRefExoticComponent<BreadcrumbItemProps & React.RefAttributes<HTMLAnchorElement | HTMLSpanElement>>;
