import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { SelectConfig } from '@/hooks/useSelect'; import { IIssueType } from '@/common/types'; export interface SelectIssueTypeProps extends Partial { filterList?: string[]; request?: SelectConfig['request']; isProgram?: boolean; afterLoad?: (sprints: IIssueType[]) => void; dataRef?: React.MutableRefObject; valueField?: string; flat?: boolean; projectId?: string; applyType?: string; excludeTypeCodes?: string[]; excludeTypeIds?: string[]; showIcon?: boolean; onlyEnabled?: boolean; } declare const SelectIssueType: React.FC; export default SelectIssueType;