import { FC } from 'react'; type TabsProps = { onChange: (tabKey: string) => void; activeTabKey: string; children: any; noScrollGradient?: boolean; stickyTabs?: boolean; }; declare const Tabs: FC; export default Tabs;