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 | string; homeIcon?: Component; arrowIcon?: Component; }; export declare const BreadcrumbItem: Component; export {};