import React from 'react';
export type HeaderTabsProps = {
    activeTab: string;
    onChange: (value: string) => void;
    tabsConfig: Array<{
        storeId: string;
        label: string;
    }>;
};
declare function HeaderTabs({ tabsConfig, activeTab, onChange }: HeaderTabsProps): React.JSX.Element;
export default HeaderTabs;
