1 | import * as React from "react";
|
2 |
|
3 | declare namespace TabContainer {
|
4 | export interface TabContainerProps extends React.HTMLAttributes<TabContainer> {
|
5 | activeKey?: any;
|
6 | defaultActiveKey?: any;
|
7 | generateChildId?: ((eventKey: any, type: any) => string) | undefined;
|
8 | }
|
9 | }
|
10 | declare class TabContainer extends React.Component<TabContainer.TabContainerProps> {}
|
11 | export = TabContainer;
|
12 |
|
\ | No newline at end of file |