UNPKG

537 BTypeScriptView Raw
1import React from 'react';
2import { SelectCallback, TransitionType } from './helpers';
3export interface TabsProps extends React.PropsWithChildren<unknown> {
4 activeKey?: unknown;
5 defaultActiveKey?: unknown;
6 onSelect?: SelectCallback;
7 variant?: 'tabs' | 'pills';
8 transition?: TransitionType;
9 id?: string;
10 mountOnEnter?: boolean;
11 unmountOnExit?: boolean;
12}
13declare const Tabs: {
14 (props: TabsProps): JSX.Element;
15 propTypes: any;
16 defaultProps: any;
17 displayName: string;
18};
19export default Tabs;