import { ElementType, FC } from 'react'; import { NavProps } from 'react-bootstrap'; export interface TabsProps extends NavProps { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; testId?: string; } export declare const TabContainer: FC;