import React from 'react'; import { TabsProps } from './type'; import './Tabs.less'; /** * Tabs 胶囊风格选项卡组件 * * @description 提供类似 Segmented 控件的胶囊风格选项卡,支持受控与非受控模式。 * 用于表单中替代 Radio.Group,展示更为直观的标签页切换交互。 * * @example * ```tsx * setCurrent(val)} * /> * ``` */ declare const Tabs: React.FC; export default Tabs;