/** * Zoe Gateway — OpenAPI/Swagger spec importer * * Fetches an OpenAPI spec (JSON or YAML), extracts operations, * and registers the result as a REST target on the gateway. */ import type { MCPGateway } from './gateway.js'; export declare function importOpenApiSpec(gateway: MCPGateway, name: string, specUrl: string, options?: { baseUrl?: string; tagFilter?: string[]; isAdmin?: boolean; }): Promise<{ imported: number; operations: string[]; }>;