import React, { ReactNode } from 'react';
export interface TabGroupProps {
    /**
     * The title of the group of tabs
     */
    label: string;
    /**
     * Inner content of TabGroup element
     */
    children?: ReactNode;
}
declare const TabGroup: ({ label, children }: TabGroupProps) => React.JSX.Element;
export default TabGroup;
//# sourceMappingURL=TabGroup.d.ts.map