UNPKG

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