import { PropsOf, Component } from '@builder.io/qwik';
import type { IconProps } from 'flowbite-qwik-icons';
import type { LinkProps } from '@builder.io/qwik-city';
type BreadcrumbItemProps = PropsOf<'a'> & {
    home?: boolean;
    href?: string;
    tag?: Component<LinkProps> | string;
    homeIcon?: Component<IconProps>;
    arrowIcon?: Component<IconProps>;
};
export declare const BreadcrumbItem: Component<BreadcrumbItemProps>;
export {};
