import type { McpRegistryServerResponse } from '@n8n/api-types';
import { McpRegistryService } from './registry/mcp-registry.service';
export declare class McpRegistryController {
    private readonly service;
    constructor(service: McpRegistryService);
    listServers(): Promise<McpRegistryServerResponse[]>;
}
