import React, { Ref } from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { SelectConfig } from '@/hooks/useSelect'; import type { Issue } from '@/common/types'; interface Props extends Partial { featureId?: string; featureName?: string; dataRef?: React.MutableRefObject; afterLoad?: (epics: (Issue | { issueId: string; summary: string; })[]) => void; flat?: boolean; request?: SelectConfig['request']; projectId?: string; useSelectRef?: Ref; } declare const SelectFeature: React.FC; export default SelectFeature;