import * as React from 'react'; import { IDiv } from '../../interfaces'; interface TabGroupProps extends IDiv { /** * Callback function, when active tab is changed */ onTabChange?: (e: any, index: any) => void; /** * Default index of active tab */ defaultActiveTab?: number; /** * Additional classes for titles */ titleClass?: string; /** * Additional classes */ className?: string; } interface TabGroupStates { activeTab?: number; } export declare class TabGroup extends React.PureComponent { constructor(props: TabGroupProps); handleChange: (e: any, index: any) => void; setActiveTab: (index: any) => void; render(): JSX.Element; } export {};