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