import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { ILabel } from '@/common/types'; interface Props extends Partial { dataRef?: React.RefObject>; ref?: any; valueField?: string; enabledTag?: boolean; /** @default 'true' 是否开启展示tag */ afterLoad?: (sprints: ILabel[]) => void; applicationId?: string | null; issueId: string; flat?: boolean; projectId?: string; } declare const SelectSelectBranchHOC: React.FC; export default SelectSelectBranchHOC;