import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { IVersion } from '@/common/types'; export interface SelectVersionProps extends Partial { projectId?: string; dataRef?: React.MutableRefObject>; statusArr?: Array; valueField?: string; afterLoad?: (versions: IVersion[]) => void; request?: Function; flat?: boolean; hasUnassign?: boolean; ruleIds?: string[]; selected?: string[]; fieldId?: string; } declare const SelectVersion: React.FC; export default SelectVersion;