import type { BuiltTool } from '@n8n/agents'; import type { EphemeralNodeExecutor } from '../../../node-execution'; import type { AgentJsonToolConfig } from '@n8n/api-types'; export interface NodeToolFactoryContext { executor: EphemeralNodeExecutor; projectId: string; } export declare function resolveNodeTool(toolSchema: Extract, ctx: NodeToolFactoryContext): Promise;