import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; export interface SelectSubFeatureProps extends Partial { featureIds?: Array; flat?: boolean; afterLoad?: (features: any[]) => void; } /** * 子项目查询项目群特性 */ declare const SelectSubFeature: React.FC; export default SelectSubFeature;