import * as React from 'react'; import { BsPrefixRefForwardingComponent, BsPrefixProps } from '../utils/helpers'; export interface SideNavItemProps extends BsPrefixProps, React.HTMLAttributes { /** * A unique key used to control this item's collapse/expand. */ eventKey: string; } export declare const SideNavItem: BsPrefixRefForwardingComponent<'li', SideNavItemProps>; export default SideNavItem;