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