import * as React from 'react'; type ElementType = any; export interface TabsProps { tabs: { label: ElementType[]; content: ElementType[]; }[]; builderBlock: any; defaultActiveTab?: number; collapsible?: boolean; tabHeaderLayout?: string; activeTabStyle?: any; } export declare class TabsComponent extends React.Component { state: { activeTab: number; }; get activeTabSpec(): { label: ElementType[]; content: ElementType[]; }; componentWillMount(): void; get activeTab(): number; set activeTab(tab: number); render(): React.JSX.Element; } export {};