UNPKG

570 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixRefForwardingComponent } from './helpers';
3interface AbstractNavItemProps {
4 active?: boolean;
5 as: React.ElementType;
6 className?: string;
7 disabled?: boolean;
8 eventKey?: any;
9 href?: string;
10 role?: string;
11 id?: string;
12 tabIndex?: number;
13 onClick?: (e: any) => void;
14 onSelect?: (navKey: string, e: any) => void;
15}
16declare type AbstractNavItem = BsPrefixRefForwardingComponent<'div', AbstractNavItemProps>;
17declare const AbstractNavItem: AbstractNavItem;
18export default AbstractNavItem;