import * as React from "react";

declare namespace TabContainer {
    export interface TabContainerProps extends React.HTMLAttributes<TabContainer> {
        activeKey?: any;
        defaultActiveKey?: any;
        generateChildId?: ((eventKey: any, type: any) => string) | undefined;
    }
}
declare class TabContainer extends React.Component<TabContainer.TabContainerProps> {}
export = TabContainer;
