import { IPropsType } from '../utils/props'; export default function useGetDetail(props: IPropsType, options: any): { /** 流程前置接口数据 */ workflowPreTaskRef: import("vue").Ref<{ data: {}; loading: boolean; }>; /** 获取流程前置接口数据 */ getWorkflowPreTask: () => Promise; /** 流程详情数据 */ workflowDetailRef: import("vue").Ref<{ [x: string]: any; workflowType: "TODO" | "DONE" | "MY_START" | "TO_READ" | "READ"; workflowId: string; workflowInstId: string; workflowInstName?: string | undefined; workflowInstState?: number | undefined; formId: string; formUrl?: string | undefined; mbFormUrl?: string | undefined; appCode?: string | undefined; detail?: any; replycommdata?: any; activityDefId?: string | undefined; buttons?: ("TAKE" | "SUBMIT" | "REJECT" | "RESIGN" | "COMM" | "REPLY_COMM" | "CANCEL_COMM" | "URGE" | "ADD_SIGN" | "SEND_AROUND" | "DRAWBACK" | "TGSPJB" | "RGJC" | "DRAWBACKTOFIRST" | "TERMINATE" | "HR_JJR" | "HR_LZRQ" | "STUDY_ZDSPR" | "STUDY_CCZJFH")[] | undefined; buttonsSort?: ("TAKE" | "SUBMIT" | "REJECT" | "RESIGN" | "COMM" | "REPLY_COMM" | "CANCEL_COMM" | "URGE" | "ADD_SIGN" | "SEND_AROUND" | "DRAWBACK" | "TGSPJB" | "RGJC" | "DRAWBACKTOFIRST" | "TERMINATE" | "HR_JJR" | "HR_LZRQ" | "STUDY_ZDSPR" | "STUDY_CCZJFH")[] | undefined; processDefCHName?: string | undefined; processDefId?: string | undefined; processDefName?: string | undefined; isTake?: boolean | undefined; noReplyCommunicationList?: any; replyCommunication?: any; }>; /** 获取流程详情 */ getWorkflowDetail: () => Promise; /** 流程附件列表 */ workflowFileRef: any; /** 关联流程列表 */ workflowAboutRef: any; };