UNPKG

458 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent, TransitionCallbacks } from './helpers';
4
5export interface TabPaneProps extends TransitionCallbacks {
6 eventKey?: unknown;
7 active?: boolean;
8 transition?: false | React.ElementType;
9 bsClass?: string;
10 mountOnEnter?: boolean;
11 unmountOnExit?: boolean;
12}
13
14declare class TabPane<
15 As extends React.ElementType = 'div'
16> extends BsPrefixComponent<As, TabPaneProps> {}
17
18export default TabPane;