import * as React from 'react'; import './style/index.less'; declare const TabsPositions: ["top", "bottom"]; declare const TabsTypes: ["default", "simple", "multi", "graphic"]; declare type TabsType = typeof TabsTypes[number]; declare type TabsPosition = typeof TabsPositions[number]; declare type TabsEventHandler = (data: any) => void; interface TabData { title: string; key: string | number; dot?: boolean; badge?: string | number; icon?: string | React.ReactElement; selectedIcon?: string | React.ReactElement; } interface TabsProps { type?: TabsType; position?: TabsPosition; tabs: TabData[]; border?: boolean; classInner: string; selectKey?: string | number; className?: string; style?: React.CSSProperties; prefixCls?: string; onClick?: TabsEventHandler; } declare const Tabs: React.ForwardRefExoticComponent>; export default Tabs;