import * as React from 'react'; import { TabSelectHandler } from './ContextTypes'; export interface NavItemProps { className?: string; style?: React.CSSProperties; active?: boolean; disabled?: boolean; role?: string; href?: string; onClick?: Function; onSelect?: TabSelectHandler; eventKey?: string | number; activeKey?: string | number; activeHref?: string; } export declare class NavItem extends React.Component { static defaultProps: { active: boolean; disabled: boolean; }; constructor(props: NavItemProps, context: any); handleClick: (e: any) => void; render(): JSX.Element; }