import type { FC } from 'react'; import type { LeftMenuItem } from '../types'; interface HeaderTabsProps { tabsData: LeftMenuItem[]; activesTabKey: string; onClick: (key: string) => void; } declare const HeaderTabs: FC; export default HeaderTabs;