import * as React from 'react'; import Tab from './Tab'; export interface TabBarProps { prefixCls?: string; style?: React.CSSProperties; className?: string; barTintColor?: string; hidden?: boolean; } declare class TabBar extends React.Component { static defaultProps: { prefixCls: string; barTintColor: string; hidden: boolean; }; static Tab: typeof Tab; render(): JSX.Element; } export default TabBar;