import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { Connection } from '../connect.js'; export declare const NO_ANSWER_SENTINEL = "NO_ANSWER"; /** * gossip_inquiry — broadcast a question to ALL connected agents. * * Each receiving agent's MCP sampling evaluates "do I know this?". * If yes → agent replies with its answer. * If no → agent replies with NO_ANSWER (filtered out before returning). * * This lets you ask the mesh without knowing who to ask. */ export declare function registerInquiryTool(server: McpServer, connection: Connection): void; //# sourceMappingURL=inquiry.d.ts.map