import type { BuiltTool } from '@n8n/agents';
import type { McpRegistryService } from '../../../modules/mcp-registry/registry/mcp-registry.service';
import type { AgentsToolsService } from '../agents-tools.service';
export interface ResolveIntegrationDeps {
    mcpRegistryService: McpRegistryService;
    agentsToolsService: AgentsToolsService;
}
export declare function buildResolveIntegrationTool(deps: ResolveIntegrationDeps): BuiltTool;
