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