export const TabContext: React.Context<{ setActiveTab: () => undefined; activeTab: number; tabList: never[]; }>; /** * The `` and `` components are used together to display and swap between content. */ export function Tabs(props: any): React.DetailedReactHTMLElement, HTMLInputElement>; export namespace Tabs { namespace propTypes { let children: PropTypes.Validator; } let displayName: string; } import React from 'react'; import PropTypes from 'prop-types';