import { type TabsProps as InternalTabsProps } from 'rc-tabs';
import { type FC } from 'react';
import './index.less';
export type ITabsProps = Omit<InternalTabsProps, 'prefixCls'>;
declare const Tabs: FC<ITabsProps>;
export default Tabs;
