import { default as React } from 'react'; export interface TabsTabProps { /** Label of the tab button */ label: string; /** String ID used to link the `Tabs.Tab` to a `Tabs.Panel` */ tabId: string; /** Optional value for `data-testid` attribute */ testId?: string; /** Optional prop to show an "update" notification dot in the tab */ hasStatusIndicator?: boolean; } declare const TabsTab: ({ label, tabId, testId, hasStatusIndicator, }: TabsTabProps) => React.JSX.Element; export default TabsTab; //# sourceMappingURL=TabsTab.d.ts.map