/// <reference types="react" />
import React from 'react';
import { DefaultTabBar as NativeDefaultTabBar } from './components';
import TabsProps from './PropsType';
export default class Tabs extends React.PureComponent<TabsProps, {}> {
    static DefaultTabBar: typeof NativeDefaultTabBar;
    static defaultProps: {};
    renderTabBar: (props: any) => JSX.Element;
    render(): JSX.Element;
}
