import type { DynamicStructuredTool, Tool } from '@langchain/classic/tools'; import type { EngineRequest, ExecuteNodeResult, INode } from 'n8n-workflow'; import type { RequestResponseMetadata } from './types'; type ConnectedTool = DynamicStructuredTool | Tool; type Action = EngineRequest['actions'][number]; export declare function executeEngineAction(node: INode, action: Action, tools: ConnectedTool[]): Promise>; export {};