import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; interface Props extends Partial { issueType: 'sub_task' | 'bug'; flat?: boolean; projectId?: string; } declare const SelectParentIssue: React.FC; export default SelectParentIssue;