import * as React from 'react'; import './style/index.less'; type tabType = 'card' | 'line' | 'pagenation'; interface TabsBaseProps { bgColor: 'string'; activeValue: string; centered?: boolean; vertical?: boolean; closable?: boolean; type: tabType; onChange?: (activeValue: string) => void; onEdit?: (activeValue: string) => void; children: React.ReactNode; pageSize?: number; } type TabsBase = Partial; declare const Tabs: React.FC; export default Tabs;