UNPKG

571 BTypeScriptView Raw
1import * as React from "react";
2import { TransitionCallbacks } from "react-bootstrap";
3
4declare 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}
14declare class TabPane extends React.Component<TabPane.TabPaneProps> {}
15export = TabPane;