1 | import * as React from 'react';
|
2 | import { EventKey, TransitionCallbacks } from '@restart/ui/types';
|
3 | import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionType } from './helpers';
|
4 | export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
5 | eventKey?: EventKey;
|
6 | active?: boolean;
|
7 | transition?: TransitionType;
|
8 | mountOnEnter?: boolean;
|
9 | unmountOnExit?: boolean;
|
10 | }
|
11 | declare const TabPane: BsPrefixRefForwardingComponent<'div', TabPaneProps>;
|
12 | export default TabPane;
|