import React from 'react'; import { type TabPadding, type TabItemConfig, type TabsType } from './types'; type Props = TabItemConfig & { padding: TabPadding; }; declare const TabLink: ({ badgeCount, className, disabled, icon, id, isActive, label, onClick, padding, pendoTag, testId, to, variant }: Props) => React.JSX.Element; export default TabLink;