UNPKG

335 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './index';
3
4export interface TabPaneProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 tag?: React.ElementType;
7 cssModule?: CSSModule;
8 tabId?: number | string;
9}
10
11declare class TabPane extends React.Component<TabPaneProps> {}
12export default TabPane;