1 | import * as React from "react";
|
2 | import { TransitionCallbacks } from "react-bootstrap";
|
3 |
|
4 | declare namespace TabPane {
|
5 | export interface TabPaneProps extends TransitionCallbacks, React.HTMLProps<TabPane> {
|
6 | animation?: boolean | React.ComponentClass<any> | undefined;
|
7 | "aria-labelledby"?: string | undefined;
|
8 | bsClass?: string | undefined;
|
9 | eventKey?: any;
|
10 | mountOnEnter?: boolean | undefined;
|
11 | unmountOnExit?: boolean | undefined;
|
12 | }
|
13 | }
|
14 | declare class TabPane extends React.Component<TabPane.TabPaneProps> {}
|
15 | export = TabPane;
|