1 | import * as React from "react";
|
2 | import { SelectCallback } from "react-bootstrap";
|
3 |
|
4 | declare namespace Tabs {
|
5 | export interface TabsProps extends React.HTMLProps<Tabs> {
|
6 | activeKey?: any;
|
7 | animation?: boolean | undefined;
|
8 | bsStyle?: string | undefined;
|
9 | defaultActiveKey?: any;
|
10 | onSelect?: SelectCallback | undefined;
|
11 | paneWidth?: any;
|
12 | position?: string | undefined;
|
13 | tabWidth?: any;
|
14 | mountOnEnter?: boolean | undefined;
|
15 | unmountOnExit?: boolean | undefined;
|
16 | justified?: boolean | undefined;
|
17 | }
|
18 | }
|
19 | declare class Tabs extends React.Component<Tabs.TabsProps> {}
|
20 | export = Tabs;
|