1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface NavbarBrandProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
4 | href?: string;
|
5 | }
|
6 | declare const NavbarBrand: BsPrefixRefForwardingComponent<'a', NavbarBrandProps>;
|
7 | export default NavbarBrand;
|