import type { FC } from 'react';
import './index.less';
interface TreeOptionSetProps {
label?: any;
name: any;
rules?: any[];
required?: boolean;
selectedComp?: any;
}
declare const TreeOptionSet: FC<TreeOptionSetProps>;
export default TreeOptionSet;