UNPKG

453 BTypeScriptView Raw
1import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionCallbacks, TransitionType } from './helpers';
2export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps {
3 eventKey?: any;
4 active?: boolean;
5 transition?: TransitionType;
6 mountOnEnter?: boolean;
7 unmountOnExit?: boolean;
8}
9declare type TabPane = BsPrefixRefForwardingComponent<'div', TabPaneProps>;
10declare const TabPane: TabPane;
11export default TabPane;