import { AxiosPromise } from "axios";
/**
 * 相应参数
 */
export interface TreeParams {
    /**
     * 流程相关资源ID
     */
    resourceId: string;
    /**
     * 表单起草年份，格式为yyyy 如:2025
     */
    resourceYear: string;
}
export interface DetailParams {
    /**
     * 流程实例ID
     */
    processId: string;
    /**
     * 表单起草年份，格式为yyyy 如:2025
     */
    resourceYear: string;
}
export interface NodeResourceParams {
    processId: string;
    activityDescCode: string;
    resourceYear: string;
}
export declare function getProcessTraceTree(params: any): AxiosPromise<TreeParams>;
export declare function getProcessTraceDetail(params: any): AxiosPromise<DetailParams>;
export declare function getProcessDiagram(params: any): AxiosPromise<DetailParams>;
export declare function getProcessNodeList(params: any): AxiosPromise<DetailParams>;
export declare function getNodeResource(params: any): AxiosPromise<NodeResourceParams>;
export declare function moveTo(url: any, params: any): AxiosPromise<Object>;
export declare function getCurrentOpinion(params: any): AxiosPromise<Object>;
export declare function getReadList(params: any): AxiosPromise<object>;
export declare function getReadOpinionList(params: any): AxiosPromise<object>;
export declare function cancleProcessApi(url: any, params: any): AxiosPromise<Object>;
export declare function withdrawProcessApi(url: any, params: any): AxiosPromise<Object>;
