import * as React from 'react'; declare type Props = { onClickTab?: (tabName: string) => void; className?: string; textArray: Array; }; declare type State = { selectedTab: string; textArray: Array; }; declare class Tabs extends React.Component { constructor(props: Props); handleClickTabItem(t: string): void; render(): JSX.Element; } export default Tabs;