///
import { Component } from 'react';
import TabPane from './TabPane';
import { ITabs } from './PropsType';
export default class Tabs extends Component {
static TabPane: typeof TabPane;
static defaultProps: {
prefixCls: string;
destroyInactiveTabPane: boolean;
onChange: () => any;
tabBarPosition: string;
style: {};
};
store: {
activeKey: any;
};
componentWillReceiveProps(nextProps: any): void;
tabBar: any;
onTabClick(activeKey: any): void;
onNavKeyDown(e: any): void;
setActiveKey(activeKey: any): void;
getNextActiveKey(next: any): any;
render(): JSX.Element;
}