import { EmopTableProClass } from '../../class/EmopTableProClass/EmopTableProClass'; import { EmopPublicWorkflowCreateApiService } from './emop-public-workflow-create-api.service'; export declare class EmopPublicWorkflowCreateService { private EmopPublicWorkflowCreateApiService; /** * 流程模板列表 */ workflowTemplateList: any[]; /** * 当前选中的流程模板列表 */ currentWorkflowTemplate: string; /** * 流程分配 */ processAssignment: any; /** * 指派人员列表 */ appointeeList: any[]; /** * 审批对象表格数据 */ approvalTable: EmopTableProClass; /** * 自定义参数 */ customParams: { multiple: boolean; tenant: string; batchId: string; allowDeleteDefault: boolean; }; constructor(EmopPublicWorkflowCreateApiService: EmopPublicWorkflowCreateApiService); /** * 清除数据 */ clearData(): void; /** * 流程模板修改回调 */ templateChange(value: string): void; }