import type { BuiltTool } from '@n8n/agents'; export interface ToolRegistryEntry { kind: 'tool' | 'workflow' | 'node'; workflowId?: string; workflowName?: string; triggerType?: string; nodeType?: string; nodeTypeVersion?: number; nodeDisplayName?: string; nodeParameters?: Record; } export type ToolRegistry = Map; export declare function buildToolRegistry(tools: BuiltTool[]): ToolRegistry;