UNPKG

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