import * as React from 'react'; export interface Props { activeTabId: string; onChange: (tabId: any) => void; children?: React.ReactNode; id?: string; className?: string; } export default class Tabs extends React.PureComponent { generateTabs: () => { tabs: JSX.Element[] | null | undefined; content: null; }; render(): JSX.Element; }