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