import * as React from 'react'; import TabsProps from './PropsType'; import './style.less'; declare class Tabs extends React.Component { static defaultProps: any; defaultTabRef: any; wrapRef: any; constructor(props: any); onToggleCollapse: (visible: any) => void; componentWillReceiveProps(nextProps: any): void; componentDidMount(): void; handleChange: (tab: any, index: any) => void; handleTabClick: (tab: any, index: any) => void; arrowRenderTab: any; render(): any; } export { TabsProps }; export default Tabs;