import {
ButtonHTMLAttributes,
ForwardRefExoticComponent,
RefAttributes,
} from 'react';
export type TabNavItemProps = {
isActive?: boolean;
isDropdown?: boolean;
} & ButtonHTMLAttributes &
RefAttributes;
/** @deprecated */
export const TabNavItem: ForwardRefExoticComponent;
export {};