import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface NavbarBrandProps extends BsPrefixProps, JSX.HTMLAttributes { href?: string; } declare const NavbarBrand: BsPrefixRefForwardingComponent<"a", NavbarBrandProps>; export default NavbarBrand;