import React from 'react'; import { TabsProps, TabsRef } from './type'; export * from './type'; /** * 用于让用户在不同的视图中进行切换。为优化移动端渲染性能,如有替换DOM、发请求更新数据等操作,请在`onAfterChange`而非`onChange`回调中进行。 * @en Used to let the user switch between different views. In order to optimize the rendering performance of the mobile terminal, if you need to replace the DOM, send a request to update data, etc., please do it in the `onAfterChange` instead of the `onChange` callback. * @type 导航 * @type_en Navigation * @name 选项卡 * @name_en Tabs */ declare const Tabs: React.ForwardRefExoticComponent>; export default Tabs;