import { useRouteMeta } from 'dumi'; import { type FC } from 'react'; import './index.less'; type IContentTabs = ReturnType['tabs']; export interface IContentTabsProps { tabs: IContentTabs; tabKey: string | null; onChange: (tab?: NonNullable[0]) => void; } declare const ContentTabs: FC; export default ContentTabs;