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