UNPKG

512 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>;
7 'aria-labelledby'?: string;
8 bsClass?: string;
9 eventKey?: any;
10 mountOnEnter?: boolean;
11 unmountOnExit?: boolean;
12 }
13}
14declare class TabPane extends React.Component<TabPane.TabPaneProps> { }
15export = TabPane;