UNPKG

510 BTypeScriptView Raw
1import * as React from 'react';
2import { DefaultTabBar as RMCDefaultTabBar, TabBarPropsType } from 'rmc-tabs';
3import TabsProps from './PropsType';
4export declare class DefaultTabBar extends RMCDefaultTabBar {
5 static defaultProps: any;
6}
7export default class Tabs extends React.PureComponent<TabsProps, {}> {
8 static DefaultTabBar: typeof DefaultTabBar;
9 static defaultProps: {
10 prefixCls: string;
11 };
12 renderTabBar: (props: TabBarPropsType) => JSX.Element;
13 render(): JSX.Element;
14}