import React, { CSSProperties, ReactNode } from 'react'; interface Props { tabs: T[]; initialTab?: T; onClickTab?: (tab: T) => {}; renderContent: (tab: T, index: number) => ReactNode; getTitle: (a: T) => string; compareTabs: (a: T, b: T) => boolean; renderHiddenContent: boolean; tabStyle?: CSSProperties; textStyle?: CSSProperties; activeTextStyle?: CSSProperties; } declare const _default: (props: Props) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null; export default _default;