import * as React from 'react'; import type { TabsProps, SharedStylePropsArg } from './types'; export default class Tabs extends React.Component { static defaultProps: Partial; onChange({ activeKey }: { activeKey: string; }): void; getTabs(): any; getPanels(): any; getSharedProps(): SharedStylePropsArg; render(): React.JSX.Element; }