UNPKG

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