/** * This source code is quoted from rc-tabs. * homepage: https://github.com/react-component/tabs */ import React from 'react'; import { InkTabBarNodeProps } from './iTabs'; export default class InkTabBarNode extends React.Component { timeout: any; static defaultProps: { clsPrefix: string; inkBarAnimated: boolean; styles: {}; saveRef: () => void; }; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; render(): JSX.Element; }