UNPKG

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