You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
331 B

import { NavItemProps as BaseNavItemProps } from '@restart/ui/NavItem';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
export interface NavLinkProps extends BsPrefixProps, Omit<BaseNavItemProps, 'as'> {
}
declare const NavLink: BsPrefixRefForwardingComponent<'a', NavLinkProps>;
export default NavLink;