export default Tab; declare class Tab extends React.PureComponent { static propTypes: { /** Specifies an unique id for a tab button. Use it to differentiate between tabs */ id: PropTypes.Validator; /** Renders any content inside of a tab. */ children: PropTypes.Validator>; /** Defines the title of the tab. */ name: PropTypes.Validator>; /** Specifies whether the tab button is disabled. */ disabled: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=Tab.d.ts.map