/** * 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 { FlowSurfaceExecutorContext, FlowSurfaceMutateOp } from './types'; export declare function executeMutateOps(ops: FlowSurfaceMutateOp[], ctx: FlowSurfaceExecutorContext, dispatcher: (op: FlowSurfaceMutateOp, values: Record, ctx: FlowSurfaceExecutorContext) => Promise): Promise<{ opId?: string; result: any; }[]>; export declare function resolveFlowSurfaceValueKeys(input: any, keys: Map): any; export declare function inspectFlowSurfaceValueKey(path: string, keys: Map): { found: true; value: any; missingHead?: undefined; } | { found: false; missingHead: string; value?: undefined; };