import React from "react";
interface TabProps {
    children: any;
    title: React.ReactNode;
    eventKey: string;
}
interface TabsProps {
    cards?: boolean;
    fill?: boolean;
    alt?: boolean;
    children: React.ReactElement<TabProps>[] | React.ReactElement<TabProps>;
    defaultEventKey?: string;
}
declare const Tabs: {
    ({ cards, children, defaultEventKey, ...props }: TabsProps): JSX.Element;
    Tab: (props: TabProps) => any;
};
export default Tabs;
