import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { IIssueType } from '@/common/types'; export interface SelectSubProjectProps extends Partial { dataRef?: React.MutableRefObject; hasUnassign?: boolean; afterLoad?: (types: IIssueType[]) => void; } declare const SelectSubProject: React.FC; export default SelectSubProject;