import { FunctionComponent } from 'react';
import DataSet from '../../../../pro/es/data-set/DataSet';
export interface TabGroupsProps {
    dataSet: DataSet;
    defaultKey?: string | undefined;
    onDefaultKeyChange: (defaultKey: string) => void;
}
declare const TabGroups: FunctionComponent<TabGroupsProps>;
export default TabGroups;
