import type { FC } from 'react';
import './index.less';
interface IProps {
    name: string;
    label: string;
    placeholder?: string;
    tabsItems?: any[];
    onChange?: (val: any[]) => void;
    selectedComp?: any;
    DSLCore?: any;
    compCreators?: any;
    value?: any;
}
declare const TabsSet: FC<IProps>;
export default TabsSet;
