declare namespace WorkFlowUtil {
    function checkPIExsit(piid: string): Promise<any>;
    function canDoTask(tid: string): Promise<any>;
    function enterViewProcessDetail(piid: string): Iterable<any>;
    function getAdditiveAttributeValue(tid: string, attributeName: string): Promise<any>;
    function getOneTaskAboutPiForMe(piid: string, eid: string): Promise<any>;
    function goProcess(pPiid: string): Iterable<any>;
    function goProcessInPara(pPiid: string): Iterable<any>;
    function isSupportRWTS(): boolean;
    function openTaskAboutNewProcess(piid: string): Iterable<any>;
    function openTaskByPara(tid: string): Iterable<any>;
}

export default WorkFlowUtil;
