import { ElementType, FC } from 'react';
import { NavItemProps } from 'react-bootstrap';
export interface TabNavItemProps extends NavItemProps {
    /** Utilizzarlo in caso di utilizzo di componenti personalizzati */
    tag?: ElementType;
    testId?: string;
}
export declare const TabNavItem: FC<TabNavItemProps>;
