import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent, ElementType } from "./helpers"; export interface BreadcrumbItemProps extends BsPrefixProps, Omit, "title"> { active?: boolean; href?: string; linkAs?: ElementType; target?: string; title?: string; linkProps?: Record; } declare const BreadcrumbItem: BsPrefixRefForwardingComponent<"li", BreadcrumbItemProps>; export default BreadcrumbItem;