export function Tab({ _id, label, active, index, tab, children }: { _id: any; label: any; active: any; index: any; tab: any; children: any; }): React.DetailedReactHTMLElement<{ role: "presentation"; }, HTMLElement> | React.DetailedReactHTMLElement<{ className: string; hidden: boolean; role: "tabpanel"; id: string; "aria-labelledby": string; }, HTMLElement>; export namespace Tab { namespace propTypes { let _id: PropTypes.Validator; let active: PropTypes.Requireable; let children: PropTypes.Requireable; let index: PropTypes.Validator; let label: PropTypes.Validator; let tab: PropTypes.Requireable; } namespace defaultProps { let _id_1: string; export { _id_1 as _id }; let index_1: number; export { index_1 as index }; } } import React from 'react'; import PropTypes from 'prop-types';