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