import { TabsProps } from './interfaces'; interface TabHeaderBarProps { onChange: (changeDetail: TabsProps.ChangeDetail) => void; activeTabId: TabsProps['activeTabId']; tabs: TabsProps['tabs']; variant: TabsProps['variant']; idNamespace: string; ariaLabel?: string; ariaLabelledby?: string; i18nStrings?: TabsProps.I18nStrings; keyboardActivationMode: Required; actions?: TabsProps['actions']; } export declare function TabHeaderBar({ onChange, activeTabId, tabs, variant, idNamespace, ariaLabel, ariaLabelledby, i18nStrings, keyboardActivationMode, actions }: TabHeaderBarProps): JSX.Element; export declare function getTabElementId({ namespace, tabId }: { namespace: string; tabId: string; }): string; export {};