UNPKG

440 BTypeScriptView Raw
1import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent, SelectCallback } from './helpers';
2export interface NavLinkProps extends BsPrefixPropsWithChildren {
3 active?: boolean;
4 disabled?: boolean;
5 role?: string;
6 href?: string;
7 onSelect?: SelectCallback;
8 eventKey?: unknown;
9}
10declare type NavLink = BsPrefixRefForwardingComponent<'a', NavLinkProps>;
11declare const NavLink: NavLink;
12export default NavLink;