7 lines
331 B
TypeScript
Executable File
7 lines
331 B
TypeScript
Executable File
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;
|