import { UseQueryOptions } from 'react-query'; import { IIssueType } from '@/common/types'; export interface ProjectIssueTypesConfig { applyType?: 'agile' | 'program'; projectId?: string; /** 只返回某一类的工作项类型 */ typeCode?: string | string[]; /** 只查询启用的 */ onlyEnabled?: boolean; programId?: string | number; isProgram?: boolean; isInProgram?: boolean; isShowFeature?: boolean; menuType?: 'project' | 'org'; } export default function useProjectIssueTypes(config?: ProjectIssueTypesConfig, options?: UseQueryOptions): import("react-query/types/").QueryObserverResult;