import React from 'react'; import './index.less'; export interface TypeDataVTabsProps { className?: string; tabs: Array<{ title: string; key?: string; content: React.ReactNode; }>; defaultActiveKey?: string; autoplay?: boolean; autoplaySpeed?: number; afterChange?: (current: any, item: any) => void; infinite?: boolean; /** 悬停时暂停自动播放,默认 true */ pauseOnHover?: boolean; } declare const DataVTabs: React.FC; export default DataVTabs;