import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import type { Issue } from '@/common/types'; interface Props extends Partial { issueId?: string; afterLoad?: (issueList: Issue[]) => void; multiple?: boolean; projectId?: string; dataRef?: React.MutableRefObject; flat?: boolean; } declare const SelectParentIssue: React.FC; export default SelectParentIssue;