/** * Created by hzyanming on 17/6/28. */ import * as React from 'react'; import { TabItemPropsType, TabPropsType as BaseTabProps } from './PropsType'; export declare class TabItem extends React.Component { static defaultProps: { disabled: boolean; isShow: boolean; }; render(): JSX.Element; } export interface TabPropsType extends BaseTabProps { prefixCls: string; className?: string; } export default class Tab extends React.Component { static Item: typeof TabItem; static defaultProps: { prefixCls: string; onChange: () => void; animated: boolean; }; /** * 获取默认 activeIndex * @return {string} */ getActiveIndex: (props: any) => string; getHeaderClass: (index: any, disabled: any) => string; handleTabClick: (index: any, disabled: any) => void; constructor(props: any); componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; }