/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import type { FlowSurfaceActionScope } from '../types'; export declare const APPROVAL_FLOW_SURFACE_OWNER_PLUGIN = "@nocobase/plugin-workflow-approval"; export type ApprovalFlowSurfaceBlockCatalogSpec = { key: string; label: string; use: string; requiredInitParams?: string[]; allowedContainerUses: string[]; createSupported?: boolean; }; export type ApprovalFlowSurfaceActionCatalogSpec = { publicKey: string; label: string; scope: FlowSurfaceActionScope; scene?: string; use: string; allowedContainerUses: string[]; createSupported?: boolean; }; export declare const APPROVAL_BLOCK_CATALOG_SPECS: ApprovalFlowSurfaceBlockCatalogSpec[]; export declare const APPROVAL_ACTION_CATALOG_SPECS: ApprovalFlowSurfaceActionCatalogSpec[]; export declare const APPROVAL_BLOCK_PUBLIC_KEYS: string[]; export declare const APPROVAL_ACTION_PUBLIC_KEYS: string[]; export declare const APPROVAL_BLOCK_OWNER_PLUGIN_BY_USE: Map; export declare const APPROVAL_ACTION_OWNER_PLUGIN_BY_USE: Map;