export interface Option { value: any; label: string; } /** * 多实例属性 */ export interface MultiInstancesProperties { /** 显示文字 */ text?: string; /** 是否展示多实例 */ show: boolean; /** 是否为循环实例 */ isLoop?: boolean; } /** * 用户类型 */ export declare const userType: Option[]; /** * 用户类型 */ export declare const serviceType: Option[]; /** * 脚本类型 */ export declare const scriptType: Option[]; /** * 默认用户类型 */ export declare const defaultType: (node: any, attrPrefix: string) => "candidateUsers" | "candidateGroups" | "assignee" | "delegateExpression" | "expression" | "class" | undefined; export declare const defaultUser: Option[];