UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

23 lines (17 loc) 508 B
import * as React from 'react'; import Nav from './Nav'; import { BsPrefixComponent, SelectCallback } from './helpers'; export interface TabsProps { activeKey?: unknown; defaultActiveKey?: unknown; onSelect?: SelectCallback; variant?: 'tabs' | 'pills'; transition?: false | React.ElementType; id: string; mountOnEnter?: boolean; unmountOnExit?: boolean; } declare class Tabs< As extends React.ElementType = typeof Nav > extends BsPrefixComponent<As, TabsProps> {} export default Tabs;