import React from 'react'; export interface Tab { content: JSX.Element[]; disabled: boolean; icon?: string; id: string; invalid?: boolean; label: string; opened: boolean; visible?: boolean; tooltip?: string; className?: string; } export interface Props { active: string; onChange(event: React.ChangeEvent): void; className?: string; paneClassName?: string; contentClassName?: string; contentStyle: React.CSSProperties; maxHeight?: string; hideSingleTab?: boolean; contentRenderMethod?: 'active' | 'all'; style: React.CSSProperties; tabs: Tab[]; } export declare function Tabs({ active, onChange, maxHeight, className, paneClassName, contentClassName, contentStyle, contentRenderMethod, hideSingleTab, style, tabs, }: Props): JSX.Element;