import React from 'react';
import type { TabComponentProps } from './types';
export default class TabComponent extends React.PureComponent<TabComponentProps> {
    contentDom: any;
    contentRef: (ref: any) => any;
    render(): JSX.Element;
}
